Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created November 20, 2011 15:12
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1380344 to your computer and use it in GitHub Desktop.
Save billerickson/1380344 to your computer and use it in GitHub Desktop.
CMS Page Order for Rotator post type
<?php
add_filter( 'cmspo_post_types', 'be_sort_rotator' );
/**
* CMS Page Order for Rotator post type
* @author Bill Erickson
* @link http://www.billerickson.net/code/change-post-types-cms-page-order/
*
* @param array $post_types (default is array( 'page' ) )
* @return array $post_types modified
*/
function be_sort_rotator( $post_types ) {
$post_types[] = 'rotator';
return $post_types;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment