了解如何使用WP_Query
.
$args = array(
\'post_type\' => \'cameras\',
\'posts_per_page\' => 5,
);
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
echo \'<ul>\';
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo \'<li>\' . get_the_title() . \'</li>\';
}
echo \'</ul>\';
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
你应该去看看你是怎么注册的
post_type. 除此之外,您如何在页面上使用查询。确实有一个或多个查询。如果有多个查询,则查询可能有问题。此外,如前所述,请检查您的帖子的post\\u状态。
如果您只需要计算一个特定的post,您可以只执行以下操作,而无需将其他语句用于post类型
$args = array(
\'p\' => 2943,
);
$the_query = new WP_Query( $args );
在这个阶段,不可能确定一个问题。只是一个提示,再次冲洗你的永久性皮肤