php 自定义分类法帖子类型

Posted

tags:

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

<?php 
/*
Кастомные таксономии
*/

function movie_taxonomy()
{
    $labels = [
        'name'              => _x('Ganre', 'taxonomy general name'),
        'singular_name'     => _x('Ganre', 'taxonomy singular name'),
        'search_items'      => __('Search Ganre'),
        'all_items'         => __('All Ganre'),
        'parent_item'       => __('Parent Ganre'),
        'parent_item_colon' => __('Parent Ganre:'),
        'edit_item'         => __('Edit Ganre'),
        'update_item'       => __('Update Ganre'),
        'add_new_item'      => __('Add New Ganre'),
        'new_item_name'     => __('New Ganre Name'),
        'menu_name'         => __('Ganre'),
        ];
        $args = [
        'hierarchical'      => true, // make it hierarchical (like categories)
        'labels'            => $labels,
        'show_ui'           => true,
        'show_admin_column' => true,
        'query_var'         => true,
        //'rewrite'           => ['slug' => 'genres'],
        ];
  register_taxonomy('genre', ['movie'], $args);
}
add_action('init', 'movie_taxonomy');

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

php 具有自定义分类类别的自定义帖子类型

php 创建具有自定义分类的自定义帖子类型

php 完全自定义帖子类型(分类)

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

php 自定义帖子类型和分类

PHP 自定义帖子类型和分类