Created
March 1, 2015 00:39
-
-
Save AmeliaBriscoe/c011e32075e659693c82 to your computer and use it in GitHub Desktop.
Genesis Child Theme Functions File Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //* Load the Genesis core files | |
| include_once( get_template_directory() . '/lib/init.php' ); | |
| //* Child theme Definitions | |
| define( 'CHILD_THEME_NAME', __( 'Amelia Child Theme', 'genesiamelia' ) ); | |
| define( 'CHILD_THEME_URL', 'http://ameliabriscoe.com' ); | |
| define( 'CHILD_THEME_VERSION', '1.0' ); | |
| //* Add HTML5 markup structure | |
| add_theme_support( 'html5' ); | |
| //* Add HTML5 markup structure | |
| add_theme_support( 'genesis-responsive-viewport' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment