如何计算帖子数量?

时间:2021-07-02 作者:Avigo

我想实现这样的目标:

foreach ( $posts as $post ) {
    if ( $a = $b ) ) {
        // if true +1 to the result;
    } else {
        // if not true -2 to the result;
    }
}

echo \'Your result is X\';
如何用计算结果替换X?计算代码应该是什么样子?

1 个回复
最合适的回答,由SO网友:Buttered_Toast 整理而成

你是说像这样吗

$result = 10;

foreach ( $posts as $post ) {
    if ( $a = $b ) ) {
        $result += 1;
    } else {
        $result -= 2;
    }
}

echo \'Your result is \' . $result;
这是我对提供的信息所能做的最好的了

相关推荐

Count several post tags

这可能应该发布在php论坛上,但由于它与WordPress相关,我在这里尝试一下。。使用此代码,我将获得某个标签上的帖子总数;$term = get_term_by(\'slug\', lizard, post_tag); echo $term->count; 如果我想知道10个不同标签中总共有多少帖子,我该怎么写?我猜是某种数组?