Created
November 20, 2011 20:36
-
-
Save billerickson/1380864 to your computer and use it in GitHub Desktop.
Add 'rotator' post type to CMS Page Order
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add 'rotator' 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_rotator( $post_types ) { | |
$post_types[] = 'rotator'; | |
return $post_types; | |
} | |
add_filter( 'cmspo_post_types', 'be_sort_rotator' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment