admin管理员组文章数量:1277901
I want to show all non-empty tags used on the site in a sidebar next to the post. Currently, inside a shortcode-triggered function in functions.php
I'm calling...
$tags = get_tags( array(
'orderby' => 'name',
'order' => 'ASC',
'get' => 'all'
) );
...however this still shows empty tags, similar to setting 'hide_empty'=>false
. If I get rid of 'get'=>'all'
, then only the tags used by the current post are shown.
How do I show all non-empty tags, not just the ones used by the current post?
本文标签:
版权声明:本文标题:shortcode - What parameters do I need to pass to get_tags to get ALL tags for the site, when used in a post 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741260646a2367554.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论