目前我有两个自定义帖子类型,比如 article#1 和 article#2 。我还想为每种帖子类型创建自定义标签。我的意思是如果我为 article#1 创建一个标签,它不会显示在 article#2 post type 下。
请帮助我如何做到这一点
目前我有两个自定义帖子类型,比如 article#1 和 article#2 。我还想为每种帖子类型创建自定义标签。我的意思是如果我为 article#1 创建一个标签,它不会显示在 article#2 post type 下。
请帮助我如何做到这一点
帖子后端有标签选项,您需要在其中添加标签,然后您必须在前端调用这些标签,您可以使用该功能
<?php $posttags = get_the_tags();
if ($posttags) {
echo get_the_tag_list('<ul><li>','</li><li>','</li></ul>');
}
?>
您可以做的是在您的 register_post_type 中添加名为“分类法”的 $args 参数中的附加条目,例如
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => null,
'taxonomies' => array('tag')
);
希望这就是你要找的:)