我嘗試使用WordPress主題中的分類標準創建自定義帖子,但我的自定義帖子正常,但我的分類標準未顯示在管理wordpress面板中。WordPress分類不適用於我的自定義帖子類型
我寫這部分代碼在其他頁面命名library.inc.php
,我包括在function.php
我找不到地方到底是什麼問題?
這裏是我的代碼
function p2p2_register_book(){
$labels = array(
'name' => _x('کتابخانه', 'books'),
'singular_name' => _x('کتاب', 'book'),
'add_new' => _x('افزودن کتاب', ''),
'add_new_item' => __('افزودن کتاب جدید'),
'edit_item' => __('ویرایش کتاب'),
'new_item' => __('کتاب جدید'),
'all_items' => __('همه کتاب ها'),
'view_item' => 'View Book',
'search_items' => __('جست و جو کتاب'),
'not_found' => _('کتاب یافت نشد'),
'not_found_in_trash' => __('کتاب در زباله دان یافت نشد'),
'parent_item_colon' => '',
'menu_name' => 'کتابخانه'
);
$args=array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'menu_position' => 2,
'rewrite' => array('slug' => 'book'),
'capability_type' => 'page',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array('title', 'editor', 'thumbnail', 'comments' ,'custom-fields'),
// 'taxonomies' => array('Books_category','post_tag'),
);
register_post_type('Book',$args);
}
add_action('init', 'p2p2_register_book');
,這裏是分類部分
function wp_library_post_taxonomy() {
register_taxonomy(
'Books_category', //The name of the taxonomy. Name should be in slug form (must not contain capital letters or spaces).
'Book', //post type name
array(
'hierarchical' => true,
'label' => 'دسته بندی کتاب', //Display name
'query_var' => true,
'show_admin_column' => true,
'rewrite' => array(
'slug' => 'Books-category', // This controls the base slug that will display before each term
'with_front' => true // Don't display the category base before
)
)
);
}
add_action('init', 'wp_library_post_taxonomy');
include_once('mixitup-plug.php');
add_theme_support('post_thumbnails');
add_image_size('Books_small_image',150,200,true);