在div外部显示来自查询缩略图的特定帖子

时间:2019-10-16 作者:Biels

我试图在查询的div内显示缩略图,但缩略图在div外,我不知道我做错了什么,下面是我的代码:

<?php
// WP_Query arguments
$args = array(
    \'post__in\' => array(26844,26829),
    \'post_type\'              => array( \'wedstrijd\' ),
    \'post_status\'            => array( \'published\' ),
);

// The Query
$shquery = new WP_Query( $args );

// The Loop
if ( $shquery->have_posts() ) {
    while ( $shquery->have_posts() ) {
        $shquery->the_post();
        echo \'<div class="wed_thumb">\' . the_post_thumbnail(\'et-pb-post-main-image\') . \'</div>\';
    }
} else {
    // no posts found
}

// Restore original Post Data
wp_reset_postdata();
?>

1 个回复
SO网友:techno

the_post_thumbnail 将回显它,您应该使用get_the_post_thumbnail 而是返回图像。

相关推荐

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

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