如何为自定义帖子类型制作自定义页面

时间:2013-09-04 14:01:28

标签: wordpress

所以我使用以下代码为我的wordpress网站制作了一个自定义帖子类型:

add_action( 'init', 'register_cpt_bingo' );

function register_cpt_bingo() {

    $labels = array( 
        'name' => _x( 'Bingo Sites', 'bingo' ),
        'singular_name' => _x( 'Bingo', 'bingo' ),
        'add_new' => _x( 'Add New', 'bingo' ),
        'add_new_item' => _x( 'Add New Bingo Site', 'bingo' ),
        'edit_item' => _x( 'Edit Bingo', 'bingo' ),
        'new_item' => _x( 'New Bingo', 'bingo' ),
        'view_item' => _x( 'View Bingo Site', 'bingo' ),
        'search_items' => _x( 'Search Bingo Sites', 'bingo' ),
        'not_found' => _x( 'No bingo sites found', 'bingo' ),
        'not_found_in_trash' => _x( 'No bingo sites found in Trash', 'bingo' ),
        'parent_item_colon' => _x( 'Parent Bingo:', 'bingo' ),
        'menu_name' => _x( 'Bingo Sites', 'bingo' ),
    );

    $args = array( 
        'labels' => $labels,
        'hierarchical' => true,

        'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'page-attributes' ),

        'public' => true,
        'show_ui' => true,
        'show_in_menu' => true,

        'menu_icon' => '/wp-content/themes/gamblingq/img/bingo.png',
        'show_in_nav_menus' => true,
        'publicly_queryable' => true,
        'exclude_from_search' => false,
        'has_archive' => true,
        'query_var' => true,
        'can_export' => true,
        'rewrite' => true,
        'capability_type' => 'page'
    );

    register_post_type( 'bingo', $args );
}

完美无缺。这是我的管理员面板中的一个屏幕:

enter image description here

如何添加选项以选择自定义页面模板,如下图所示:

enter image description here

任何建议都有帮助!谢谢!

2 个答案:

答案 0 :(得分:3)

是的,你可以通过以下插件来实现

custom-post-type-page-template

custom-post-template

此插件让您的需求变得简单

答案 1 :(得分:1)

Here是解决您问题的方法。按照创建专用于自定义帖子类型的自定义模板

的步骤操作