Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amielucha/f903d0d80cbbd83f9fe2 to your computer and use it in GitHub Desktop.
Save amielucha/f903d0d80cbbd83f9fe2 to your computer and use it in GitHub Desktop.
WP-Types: disable content template
// WP-Types: disable content template
function types_remove_template_selector() {
remove_meta_box( 'views_template', 'post', 'side' );
remove_meta_box( 'views_template', 'page', 'side' );
}
add_action( 'admin_head', 'types_remove_template_selector', 20);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment