Skip to content

Commit

Permalink
Documentation updates.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.locallylost.com/themes/hybrid-core/trunk@404 dba0f204-706d-4bc1-bc29-8b92e0485636
  • Loading branch information
greenshady committed Oct 16, 2010
1 parent 5d7e307 commit 9337d50
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions hybrid.php
@@ -1,5 +1,7 @@
<?php
/**
* Hybrid Core - A WordPress theme development framework.
*
* Hybrid Core is a framework for developing WordPress themes. The framework allows theme developers
* to quickly build themes without having to handle all of the "logic" behind the theme or having to code
* complex functionality for features that are often needed in themes. The framework does these things
Expand All @@ -11,12 +13,6 @@
* want to include within their themes. Most files are only loaded if the theme registers support for the
* feature using the add_theme_support( $feature ) function within their theme.
*
* @copyright 2008 - 2010
* @version 1.0.0
* @author Justin Tadlock
* @link http://themehybrid.com
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU
* General Public License version 2, as published by the Free Software Foundation. You may NOT assume
* that you can use any other version of the GPL.
Expand All @@ -28,6 +24,11 @@
* to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package HybridCore
* @version 1.0.0
* @author Justin Tadlock <justin@justintadlock.com>
* @copyright Copyright (c) 2008 - 2010, Justin Tadlock
* @link http://themehybrid.com
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/

/**
Expand Down Expand Up @@ -74,7 +75,7 @@ function __construct() {
/* Define framework, parent theme, and child theme constants. */
add_action( 'after_setup_theme', array( &$this, 'constants' ), 1 );

/* Load the core theme functions required by the rest of the framework. */
/* Load the core functions required by the rest of the framework. */
add_action( 'after_setup_theme', array( &$this, 'core' ), 2 );

/* Language functions and translations setup. */
Expand All @@ -99,7 +100,7 @@ function __construct() {
/**
* Defines the constant paths for use within the core framework, parent theme, and
* child theme. Constants prefixed with 'HYBRID_' are for use only within the core
* framework and don't reference other areas of the theme.
* framework and don't reference other areas of the parent or child theme.
*
* @since 0.7.0
*/
Expand Down

0 comments on commit 9337d50

Please sign in to comment.