Created
October 30, 2011 05:37
-
-
Save billerickson/1325555 to your computer and use it in GitHub Desktop.
Create Archive Layout
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 | |
/** | |
* Create Archive Layout | |
* @author Bill Erickson | |
* @link http://www.billerickson.net/wordpress-genesis-custom-layout/ | |
*/ | |
function be_create_archive_layout() { | |
genesis_register_layout( 'sidebar-content-archive', array( | |
'label' => __('Sidebar/Content Archive', 'genesis'), | |
'img' => get_bloginfo('stylesheet_directory') . '/images/layout-sidebar-content-archive.gif' | |
) ); | |
} | |
add_action( 'init', 'be_create_archive_layout' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment