如何使用 get_object_taxonomies 隐藏空?
是否可以隐藏没有类别的分类法。我使用 get_object_taxonomies 来显示自定义帖子类型中的所有分类法。
<?php
$blog_taxonomies = get_object_taxonomies( 'blog', 'textdomain',
(array(
'hide_empty' => true,
))
);
foreach ($blog_taxonomies as $blog_taxonomy) :
?>
<ul class="blog__categories-list">
<li class="blog__categories-title"> <?= $blog_taxonomy->labels->name; ?> </li>
<?php endforeach; ?>
Is it possible to hide taxonomies without categories. I'm using get_object_taxonomies to show all my taxonomies inside my custom post type.
<?php
$blog_taxonomies = get_object_taxonomies( 'blog', 'textdomain',
(array(
'hide_empty' => true,
))
);
foreach ($blog_taxonomies as $blog_taxonomy) :
?>
<ul class="blog__categories-list">
<li class="blog__categories-title"> <?= $blog_taxonomy->labels->name; ?> </li>
<?php endforeach; ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用下面的代码。您提交给 get_object_taxonomies 的参数不正确。
请参阅 get_object_taxonomies 文档。
You can use the code below. The parameters you submitted to get_object_taxonomies are incorrect.
See get_object_taxonomies documentation.
使用像这样的
get_object_taxonomies
函数use
get_object_taxonomies
function like this