将自定义帖子类型设置为媒体库

时间:2020-02-05 03:45:29

标签: php wordpress

因此,在尝试创建媒体库自定义帖子类型时,我具有以下代码,但我没有获取媒体库,它只是常规的帖子类型。

这是我班上的方法:

public static function doc_post_type() {
    add_action('init', function() {
        $labels = array(
            'name' => _x('Doc', 'post type general name'),
            'singular_name' => _x('Doc', 'post type singular name'),
            'menu_name' => 'Docs',
            'add_new' => _x('Add New', 'doc item'),
            'parent_item_colon' => ''
        );

        register_post_type('doc_post_type' , array(
            'labels' => $labels,
            'public' => true,
            'has_archive' => false,
            'rewrite' => false,
            'supports' => array('title', 'editor')
        ));
    });
    register_taxonomy_for_object_type('media_category', 'doc_post_type');
}

以下是活动中的自定义帖子类型:

enter image description here

0 个答案:

没有答案