This will add the Genesis layout options to custom post types.
Only tricky part is change “your_custom_post_type” in the code below to match the name of your custom post type.
[cc]/**
* add Genesis layout options to custom posts types
*
* @author Brian Lis
* @link http://dev.studiopress.com/genesis-layout-options-for-custom-post-types.htm
*/
add_post_type_support( ‘your_custom_post_type’, ‘genesis-layouts’ );
[/cc]
*** Tip, if your unsure what you called your custom post type you can find it by clicking it in the WP admin menu. You’ll go to a link similar to this, http://domain-name.com/wp-admin/edit.php?post_type=my-cpt. In this example “my-cpt” would be what I’d use for “your_custom_post_type”.
Bharat Chowdary says
Thanks brain for this simple and handy tip…