只是一个快速的,但我一直在做这个。我正在运行一个类别的WP\\u查询,想知道如何使用WP Query显示类别中的帖子数!
这是我的WP\\u查询的开始,但我如何简单地呼出这个类别中的帖子数量?!这让我快发疯了!
<?php
$args = array(
\'cat\' => 33,
\'posts_per_page\' => 500,
);
$the_query = new WP_Query( $args );
?>
<?php if ( $the_query->have_posts() ) :?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
谢谢!