当我们列出标签时,我们可以得到计数,甚至可以按计数排序,如下所示:
$tags = get_tags([
\'orderby\' => \'count\',
\'order\' => \'DESC\',
\'include\' => $term_ids,
]);
But how can we get the count of posts for the last week for example?
我想得到
"trending tags"
上周,但如果不进行我自己的SQL查询,就无法在WordPress中找到任何好方法来完成此操作。这就是我要走的路还是我错过了什么?