POSTS_PER_PAGE不在块中工作

时间:2020-05-27 作者:wickywills

我已经为Wordpress编辑器创建了一个新块,我正在尝试使用一个简单的WP\\U查询,但到目前为止$args 除了post_type 背景例如,我想设置posts_per_page 设置为3,但忽略此设置。为什么会这样?

<?php
wp_reset_postdata();
wp_reset_query();

$latest_news_args = [
    \'post_type\'             => \'post\',
    \'posts_per_page\'        => 2,
    \'post_status\'           => \'publish\',
    \'nopaging\'              => true,
    \'ignore_sticky_posts\'   => true
];

$latest_news_query = new WP_Query($latest_news_args);

if ($latest_news_query->have_posts()) : while ($latest_news_query->have_posts()) : $latest_news_query->the_post();
    $post_id                = get_the_ID();
    $post_title             = get_the_title();
    $post_url               = get_the_permalink();
    $post_excerpt           = get_the_excerpt();
    $post_image             = get_the_post_thumbnail_url();
    $post_image_id          = get_post_thumbnail_id( $post->ID );
    $post_image_alt_meta    = get_post_meta ( $post_image_id, \'_wp_attachment_image_alt\', true );
    $post_image_alt         = $post_image_alt_meta ? esc_html($post_image_alt_meta) : $post_title; // If no alt text specified, fall back to post title
    ?>
    <div class="latest-news-block__post">
        <?php if($post_image): ?>
            <img class="latest-news-block__post-image" src="<?php echo $post_image; ?>" alt="<?php echo $post_image_alt; ?>">
        <?php endif; ?>

        <h3 class="latest-news-block__post-title">
            <a href="<?php echo $post_url; ?>"><?php echo $post_title; ?></a>
        </h3>

        <div class="latest-news-block__post-excerpt">
            <p><?php echo $post_excerpt; ?></p>
            <a href="<?php echo $post_url; ?>" class="latest-news-block__post-more more-link"><?php _e(\'Read more\',\'site\'); ?></a>
        </div>

    </div>
<?php endwhile; endif; wp_reset_postdata(); wp_reset_query(); ?>

1 个回复
SO网友:wickywills

问题是有“固定”的帖子,它们覆盖了所有内容。解开这些柱子似乎奏效了。

另外,感谢Sally CJnopaging 提示-我不知道这会导致posts_per_page 也可以忽略。

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post