php 注册多个自定义帖子类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 注册多个自定义帖子类型相关的知识,希望对你有一定的参考价值。

// Register Custom Posts Type
function CPT_init() {

    register_post_type(
        'resources', array(
            'labels' => array('name' => __( 'Resources' ), 'singular_name' => __( 'Resource' ) ),
            'public' => true,
            'has_archive' => true,
            'menu_position' => 55,
            'supports' => array('title', 'editor', 'thumbnail'),
            'menu_icon' => 'dashicons-admin-multisite'
        )
    );
    register_post_type(
        'media_posts', array(
            'labels' => array('name' => __( 'Media Posts' ), 'singular_name' => __( 'Media Post' ) ),
            'public' => true,
            'menu_position' => 56,
            'has_archive' => true,
            'supports' => array('title', 'editor', 'thumbnail'),
            'menu_icon' => 'dashicons-index-card',
        )
    );
}
add_action( 'init', 'CPT_init' );

以上是关于php 注册多个自定义帖子类型的主要内容,如果未能解决你的问题,请参考以下文章

php 注册多个自定义帖子类型CPT

php 注册多个自定义帖子类型

php 自定义帖子类型注册

php 注册后过滤自定义帖子类型

php 注册自定义帖子类型和分类

php 注册自定义帖子类型