Skip to content

Instantly share code, notes, and snippets.

@joshuadavidnelson
Created January 10, 2014 17:21
Show Gist options
  • Save joshuadavidnelson/8358489 to your computer and use it in GitHub Desktop.
Save joshuadavidnelson/8358489 to your computer and use it in GitHub Desktop.
Remove in-post layouts for a specific post type
/**
* Remove in-post layout support for 'product' post type
*
* @link http://www.studiograsshopper.ch/web-development/how-to-use-genesis-connect-for-woocommerce/#gcw-remove-layouts
*/
add_action( 'init', 'child_remove_post_type_support' );
function child_remove_post_type_support() {
remove_post_type_support( 'product', 'genesis-layouts' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment