我创建了一个带有特定参数的WordPress循环,但它只是忽略它们。例如,我喜欢只列出文章,但也有页面列出。
<h1 id="" class="offset"><?php _e('Aktuell','Main'); ?></h1>
<?php
// Restore original Post Data
wp_reset_postdata();
// WP_Query arguments
$args = array (
'post_type' => 'post',
'cat' => '50,47',
'numberposts' => '3',
'posts_per_page' => '3',
'ignore_sticky_posts' => true,
'order' => 'ASC',
'orderby' => 'menu_order',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
?>
<article <?php post_class(); ?>>
</article>
<?php }
} else {
// no posts found
}
?>
</div>
这段代码在我的网站上正常工作。也许可以尝试使用
进行循环<article <?php post_class(); ?>>
<?php echo get_the_title(); ?>
</article>
并确认标题是否绝对不是你期望的