Skip to content

Instantly share code, notes, and snippets.

@zachskaggs
Created May 2, 2016 17:03
Show Gist options
  • Save zachskaggs/c2fcf67f501ef5ef493579fdbaa0b92e to your computer and use it in GitHub Desktop.
Save zachskaggs/c2fcf67f501ef5ef493579fdbaa0b92e 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