get_tags wordpress函数问题

时间:2014-09-16 06:54:59

标签: wordpress

无论标签计数是否大于50,以下代码始终输出“Foo”。

我的语法有什么问题?感谢。

$posttags = get_tags();
if ($posttags) {
                    foreach($posttags as $tag) {
                          if (intval($tag->count) > 50);{   
                            echo "Foo";

                          }

1 个答案:

答案 0 :(得分:2)

;

之后,您有一个多余的if
if (intval($tag->count) > 50);{
                             ^ 

只需删除它

if (intval($tag->count) > 50){   

它现在的方式基本上说:"如果计数> 50什么都不做。然后在括号中执行echo "Foo"。"