3

因此,我使用以下代码为我的 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 );
}

它完美地工作。这是我的管理面板中的一个屏幕:

在此处输入图像描述

如何添加选项以选择与下图相同的自定义页面模板:

在此处输入图像描述

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

4

1 回答 1

2

是的,您可以通过以下插件来做到这一点

自定义帖子类型页面模板

自定义帖子模板

这个插件使您的需求变得简单

于 2013-09-04T14:46:47.997 回答