Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active November 21, 2015 10:07
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 Dinamiko/821e41a8ecd8286d3078 to your computer and use it in GitHub Desktop.
Save Dinamiko/821e41a8ecd8286d3078 to your computer and use it in GitHub Desktop.
<?php
/**
* Adds post type nav_menu_item in PDF Button Post types to apply
*/
function add_dkpdf_posts_arr( $post_arr ) {
array_push( $post_arr, 'nav_menu_item' );
}
add_filter( 'dkpdf_posts_arr', 'add_dkpdf_posts_arr' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment