Skip to content

Instantly share code, notes, and snippets.

@ashleyfae
Created January 18, 2017 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashleyfae/10958dbdcb0241d27f63e41b7fd6c71f to your computer and use it in GitHub Desktop.
Save ashleyfae/10958dbdcb0241d27f63e41b7fd6c71f to your computer and use it in GitHub Desktop.
RCP: remove the metabox from the books post type
<?php
/**
* Remove the "restrict this content" meta box from the "books" post type.
*
* @param array $post_types List of post types the meta box should not be added to.
*
* @return array
*/
function pippin_exclude_post_types_from_rcp( $post_types ) {
// We do NOT want the meta box displayed on the "books" post type.
$post_types[] = 'books';
return $post_types;
}
add_filter( 'rcp_metabox_excluded_post_types', 'pippin_exclude_post_types_from_rcp' );
@danfascia
Copy link

I kind of think the default behaviour should be to only show restriction options for pages and posts and that in the settings there should be checkboxes to allow turning on of restriction on a per post type basis.

Many plugins use CPTs and users will find it confusing to be able to restrict things like shortcodes or events for example. On the other hand if an advanced user wants to turn this option on...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment