Viewing 1 replies (of 1 total)
  • Plugin Author Hidekazu Ishikawa

    (@kurudrive)

    遅くなりましてすみません。

    1.3.9以降なら

    add_filter( 'pad_display_post_types','add_pad_custom_post_types' );
    function add_pad_custom_post_types($post_types){
    	$post_types[] = 'page'; // ←カスタム投稿タイプ名
    	return $post_types;
    }

    みたいな感じでいけるかと思います。

Viewing 1 replies (of 1 total)
  • The topic ‘カスタム投稿タイプに表示させる方法’ is closed to new replies.