【发布时间】:2018-04-16 17:22:27
【问题描述】:
在每个页面和每个帖子的末尾,我想将标签输出为简码列表。
很遗憾,我对 PHP 了解不多,但是懂的人一定能用下面的代码纠正我的错误。
提前谢谢你!
<?php // functions.php | get tags
function addTag( $classes = '' ) {
if( is_page() ) {
$tags = get_the_tags(); // tags
if(!empty($tags))
{
foreach( $tags as $tag ) {
$tagOutput[] = '<li>' . $tag->name . '</li>';
}
}
}
return $tags;
}
add_shortcode('tags', 'addTag');
【问题讨论】:
-
这篇文章能满足你的需要吗? stackoverflow.com/questions/28202455/…
-
我试过了,它返回空
标签: php html wordpress shortcode