Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created December 5, 2015 13:27
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/55be2dd994c7fca94f1d to your computer and use it in GitHub Desktop.
Save Dinamiko/55be2dd994c7fca94f1d to your computer and use it in GitHub Desktop.
<?php
/**
* Example reordering post types array
*/
function reorder_dkpdf_posts_arr( $post_arr ) {
$post_arr = array( 'doc' => 'doc', 'post' => 'post', 'page' => 'page' );
return $post_arr;
}
add_filter( 'dkpdf_posts_arr', 'reorder_dkpdf_posts_arr' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment