1

カスタム階層投稿タイプを作成します。

カスタム投稿タイプのコードは次のとおりです。

// Register Custom Post Type
function landing_page() {

    $labels = array(
        'name'                => _x( 'Pages', 'Post Type General Name', 'download_saga' ),
        'singular_name'       => _x( 'Landing Page', 'Post Type Singular Name', 'download_saga' ),
        'menu_name'           => __( 'Landing Page', 'download_saga' ),
        'parent_item_colon'   => __( 'Parent Page:', 'download_saga' ),
        'all_items'           => __( 'All Pages', 'download_saga' ),
        'view_item'           => __( 'View Page', 'download_saga' ),
        'add_new_item'        => __( 'Add New Pages', 'download_saga' ),
        'add_new'             => __( 'New Landing Page', 'download_saga' ),
        'edit_item'           => __( 'Edit Page', 'download_saga' ),
        'update_item'         => __( 'Update Page', 'download_saga' ),
        'search_items'        => __( 'Search pages', 'download_saga' ),
        'not_found'           => __( 'No pages found', 'download_saga' ),
        'not_found_in_trash'  => __( 'No pages found in Trash', 'download_saga' ),
    );
    $rewrite = array(
        'slug'                => 'landingpage',
        'with_front'          => true,
        'pages'               => true,
        'feeds'               => true,
    );
    $args = array(
        'label'               => __( 'landingpage', 'download_saga' ),
        'description'         => __( 'Create Landing Page for Different Browser', 'download_saga' ),
        'labels'              => $labels,
        'supports'            => array( 'title', 'editor', 'page-attributes' ),
        'hierarchical'        => true,
        'public'              => true,
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => true,
        'show_in_admin_bar'   => true,
        'menu_position'       => 20,
        'menu_icon'           => 'http://www.downloadsaga.com/wp-content/themes/ProjectR/images/lpage.png',
        'can_export'          => true,
        'has_archive'         => false,
        'exclude_from_search' => true,
        'publicly_queryable'  => true,
        'query_var'           => 'landingpage',
        'rewrite'             => $rewrite,
        'capability_type'     => 'page',
    );
    register_post_type( 'landingpage', $args );

}

// Hook into the 'init' action
add_action( 'init', 'landing_page', 0 );

エディターページに移動するとページ属性ウィジェットが表示されますが、ページテンプレートリストは表示されません。そのため、カスタム投稿ページのページ テンプレートを選択できません。私はすでに 3 ページのテンプレートを作成しており、wordpress のデフォルトのページ機能でうまく機能します。

何が問題で、どうすれば解決できますか?

wordpress codex、wordpressサポートページ、stackoverflow、ask.comを見つけてみましたが、正しい回答がどこにあるのかわかりません:(

お願い助けて。

これはページの現在のビューのスクリーンショットです

現在のビュー

4

2 に答える 2

0

簡単な回答です。 テンプレート投稿タイプを指定するには、コメントで新しいテンプレートを作成する必要があります

/*
  Template Name: Full Width
  Template Post Type: post-type-name, page, projects, code
 */

詳細については、https://rainastudio.com/template-page-attributes-wordpress/をご覧ください。

于 2020-06-25T00:43:49.290 に答える
0

すでに解決していますが、親を使用するには、同じタイプの別のアイテムが必要です。アイテムを作成すると、次にそれを行うときに、親セレクターが表示されます。Wordpress では、別の親と同じタイプのアイテムのみを選択できます。

お役に立てれば。

于 2015-09-08T10:30:37.770 に答える