Created
October 20, 2013 07:46
-
-
Save jamiemitchell/7066159 to your computer and use it in GitHub Desktop.
Register some example widget areas in Genesis
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 | |
/* Register widget areas | |
------------------------------------------------------------ */ | |
genesis_register_sidebar( array( | |
'id' => 'home-welcome', | |
'name' => __( 'Home Welcome', 'jmd' ), | |
'description' => __( 'This is the home welcome section.', 'jmd' ), | |
) ); | |
genesis_register_sidebar( array( | |
'id' => 'home-top', | |
'name' => __( 'Home Top', 'jmd' ), | |
'description' => __( 'This is the home top section.', 'jmd' ), | |
) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment