Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wpcrmsystem/d2d95b74336130f27c4e47bf8d439560 to your computer and use it in GitHub Desktop.
Save wpcrmsystem/d2d95b74336130f27c4e47bf8d439560 to your computer and use it in GitHub Desktop.
Ninja Demo Page Filter Example
<?php
function add_pages_to_filter( $array ) {
$array[] = 'post-new.php?post_type=my-custom-post-type';
return $array;
}
add_filter( 'nd_allowed_pages' , 'add_pages_to_filter' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment