Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created November 21, 2015 10:26
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/2725e1951862b6e0cab9 to your computer and use it in GitHub Desktop.
Save Dinamiko/2725e1951862b6e0cab9 to your computer and use it in GitHub Desktop.
<?php
/**
* Removes post type attachment in PDF Button Post types to apply
*/
function remove_dkpdf_posts_arr( $post_arr ) {
unset( $post_arr['attachment'] );
return $post_arr;
}
add_filter( 'dkpdf_posts_arr', 'remove_dkpdf_posts_arr' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment