web-dev-qa-db-ja.com

pagesのregister_post_type?

このサイトとWordpress Codexを読んでいると、Wordpressでカスタムタイプのページを有効にする機能があるのがわかります。 Pagesを有効にするにはどうすればよいですか。

それとも少なくともページの下に投稿を配置するために表示されるように投稿のオプションを取得しますか?

2
phwd

あなたの質問は理解するのにそれほど明確ではありません。とにかく私は答えようとしています...あなたがあなたに新しいカスタム投稿タイプを宣言するときあなたは 'hierarchy' => trueを使うことができます。

この新しいメニューを管理者の他の場所に配置するには、プロパティ 'menu_position' => 5を使用します。

例(functions.phpファイルに追加する):

add_action( 'init', 'create_my_post_types' );    

function create_my_post_types() {
    register_post_type( 'mycustompages',
        array(
            'labels' => array(
                'name' => __( 'My custom pages' ),
                'singular_name' => __( 'My custom page' )
            ),
            'public' => true,
            'hierarchical' => true,
            'show_ui' => true,
            'publicly_queryable' => true,
            'exclude_from_search' => false,
            'menu_position' => 5,
            'supports' => array( 'title', 'editor', 'comments', 'trackbacks', 'author', 'excerpt', 'custom-fields', 'thumbnail' ),
            'rewrite' => array( 'slug' => 'mypage', 'with_front' => false ),
        )
    );
}
4
sgelob