Skip to content

Instantly share code, notes, and snippets.

@hissy
Created September 24, 2012 13:11
Show Gist options
  • Save hissy/3775883 to your computer and use it in GitHub Desktop.
Save hissy/3775883 to your computer and use it in GitHub Desktop.
[WordPress] Custom Post Type Support with CMS Page Order Plugin
/**
* 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');
@hissy
Copy link
Author

hissy commented Sep 24, 2012

CMS Page Order Pluginで、カスタム投稿タイプに対応させる方法

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment