Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 20, 2012 13:11
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 billerickson/2758065 to your computer and use it in GitHub Desktop.
Save billerickson/2758065 to your computer and use it in GitHub Desktop.
<?php
/**
* Add 'post' post type to CMS Page Order
* @author Bill Erickson
* @link http://www.billerickson.net/code/change-post-types-cms-page-order
*
* @param array $post_types
* @param array $post_types modified
*/
function be_sort_post( $post_types ) {
$post_types[] = 'post';
return $post_types;
}
add_filter( 'cmspo_post_types', 'be_sort_post' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment