我想創建一個名爲testimonials的自定義帖子類型,爲此我想讓管理員有機會添加公司名稱/用戶名以及他們提供了哪些推薦,我知道我可以做到這一點通過在我的functions.php
文件中聲明一個自定義的帖子類型,但它似乎不工作,我得到的只是普通的帖子字段,有人可以告訴我哪裏出錯了,或者我該怎麼做?自定義帖子類型wordpress
function testimonials_register() {
$args = array(
'label' => __('Testimonials'),
'singular_label' => __('Testimonial'),
'public' => true,
'show_ui' => true,
'capability_type' => false,
'hierarchical' => false,
'rewirte' => true,
'supports' => array('title', 'editor')
);
register_post_type('testimonial', $args);
}