Created
September 24, 2012 13:11
-
-
Save hissy/3775883 to your computer and use it in GitHub Desktop.
[WordPress] Custom Post Type Support with CMS Page Order Plugin
This file contains hidden or 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
/** | |
* Custom Post Type Support with CMS Page Order Plugin | |
* http://wordpress.org/extend/plugins/cms-page-order/ | |
*/ | |
function my_filter_cmspageorder($post_types){ | |
$post_types[] = 'custom'; // add 'custom' post type | |
return $post_types; | |
} | |
add_filter('cmspo_post_types','my_filter_cmspageorder'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CMS Page Order Pluginで、カスタム投稿タイプに対応させる方法