php 完全自定义帖子类型(分类)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 完全自定义帖子类型(分类)相关的知识,希望对你有一定的参考价值。
/* custom tax */
function showbest_industries()
{
$supports = array(
'title', // post title
'editor', // post content
'author', // post author
'thumbnail', // featured images
'excerpt', // post excerpt
'custom-fields', // custom fields
'comments', // post comments
'revisions', // post revisions
'post-formats', // post formats
);
$labels = array(
'name' => _x('Industries', 'plural'),
'singular_name' => _x('Industry', 'singular'),
'menu_name' => _x('Industries', 'admin menu'),
'name_admin_bar' => _x('Industries', 'admin bar'),
'add_new' => _x('Add New', 'add new'),
'add_new_item' => __('Add New Industry'),
'new_item' => __('New Industry'),
'edit_item' => __('Edit Industry'),
'view_item' => __('View Industry'),
'all_items' => __('All Industries'),
'search_items' => __('Search Industries'),
'not_found' => __('No industries found.'),
);
$args = array(
'supports' => $supports,
'labels' => $labels,
'public' => true,
'query_var' => true,
'rewrite' => array('slug' => 'industries'),
'has_archive' => true,
'hierarchical' => false,
'menu_icon' => 'dashicons-admin-users',
);
register_post_type('industries', $args);
}
add_action('init', 'showbest_industries');
/* custom tax end */
以上是关于php 完全自定义帖子类型(分类)的主要内容,如果未能解决你的问题,请参考以下文章
php 具有自定义分类类别的自定义帖子类型
php 创建具有自定义分类的自定义帖子类型
php 自定义分类法帖子类型
php 注册自定义帖子类型和分类
php 自定义帖子类型和分类
PHP 自定义帖子类型和分类