WordPress循环不尊重我的参数

bkhjykvo  于 2022-11-15  发布在  WordPress
关注(0)|答案(1)|浏览(206)

我创建了一个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>
0h4hbjxa

0h4hbjxa1#

这段代码在我的网站上运行正常。

<article <?php post_class(); ?>>
<?php echo get_the_title(); ?>
</article>

并确认标题是否确实不是您所期望的

相关问题