如何统计有特定期限的帖子类型?

时间:2011-06-22 作者:m-torin

计算一个职位类型中有特定期限的职位数量的最佳方法是什么?我不相信get_posts 接受术语查询,但我在new WP_Query, 虽然我可能做错了什么。

用法示例:

$posts = get_posts( array(
    \'post_type\' => \'inventory\',
    array(
        \'taxonomy\' => \'status\',
        \'terms\' => \'in-stock\',
        \'field\' => \'slug\'
    ),
) );
$count =  count( $posts );
echo $count;

1 个回复
最合适的回答,由SO网友:mfields 整理而成
$items = get_posts( array(
    \'post_type\'   => \'inventory\',
    \'numberposts\' => -1,
    \'taxonomy\'    => \'status\',
    \'term\'        => \'in-stock\'
    ) );

$count =  count( $items );
echo $count;
结束

相关推荐

How do I order my loop query?

我的数据库中有一个表,其中包含我试图排序帖子的投票统计。屏幕截图:the table我尝试过这样的方法,它可以显示所有投票的帖子和分页,但不会按DESC排序。如果我接近这一权利,任何建议都将不胜感激。 <?php global $wpdb; $my_posts = $wpdb->get_col(\"SELECT like_pid FROM wp_likes_count ORDER BY like_count\"); $paged = (get_query_var(