0
我一直在試圖設計新聞作爲自定義帖子類型,並且我還將必要的代碼添加到了function.php頁面。但自定義字段中仍然沒有下拉列表。這裏是我的代碼函數自定義帖子類型中的自定義字段無法正常工作
[![function news_custom_init() {
$args = array(
'public' => true,
'label' => 'News',
'has_archive'=>true,
'supports' => array('title', 'editor', 'description', 'author', 'thumbnail', 'custom-fields')
);
register_post_type('news', $args);
}
add_action('init', 'news_custom_init');