Last active
August 29, 2015 14:09
-
-
Save j-mccarthy/73aa168ec1f70d157609 to your computer and use it in GitHub Desktop.
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 // <- Remove <?php if your using this snippet | |
// Register New Layout | |
function jm_custom_layout() { | |
genesis_register_layout( 'layout-name', array( | |
'label' => __('custom/layout/name', 'genesis'), | |
'img' => get_bloginfo('stylesheet_directory') . '/images/yourlayout.gif' | |
) ); | |
} | |
add_action( 'init', 'jm_custom_layout' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment