我已经创建了一个自定义帖子类型(产品),目前我有两个自定义分类法(嘴唇和眼睛)。
我可以让归档文件显示为“products”,也可以让归档文件显示为“lips”下的类别,但我无法让归档文件显示为分类。
我已经检查了我能找到的每一个问题,并对照我所做的检查了答案,但就我的一生而言,我无法找出哪里出了问题。
我有一个分类模板“分类唇”。php”,但它只是一直默认返回到我的首页。php模板。
以下是我的帖子类型代码:
function my_first_post_type() {
$args = array(
\'labels\' => array(
\'name\' => \'Products\',
\'singular_name\' => \'Product\',
),
\'hierarchical\' => true,
\'public\' => true,
\'has_archive\' => true,
\'menu_icon\' => \'dashicons-list-view\',
\'supports\' => array(\'title\', \'editor\', \'thumbnail\'),
\'rewrite\' => array(\'slug\' => \'shop-products\'),
\'taxonomies\' => array(\'lips\', \'eyes\'),
);
register_post_type(\'products\', $args);
}
add_action(\'init\', \'my_first_post_type\');
下面是我的分类代码:
function my_first_taxonomy()
{
$args = array(
\'labels\' => array(
\'name\' => \'Lips\',
\'singular_name\' => \'Lips\',
),
\'public\' => true,
\'hierarchical\' => true,
\'rewrite\' => array(\'slug\' => \'lips\'),
);
register_taxonomy(\'lips\', array(\'products\'), $args);
}
add_action(\'init\', \'my_first_taxonomy\');
我已多次重置永久链接,但没有任何更改。
对不起,我知道这个问题已经被问了很多次了,我只是不知道我做了什么!我对这一切都很陌生,所以请温柔地笑,我可能不会理解太复杂的事情!