Skip to content

Instantly share code, notes, and snippets.

@j-mccarthy
Last active August 29, 2015 14:09
Show Gist options
  • Save j-mccarthy/73aa168ec1f70d157609 to your computer and use it in GitHub Desktop.
Save j-mccarthy/73aa168ec1f70d157609 to your computer and use it in GitHub Desktop.
<?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