如何获得贴片的全尺寸图像?

时间:2013-12-15 作者:rram

嗨,我正在使用普通循环来获取帖子内容。目的是在博客中显示图像或视频。

我试过了the_content() 对于循环,但我得到了我相信的缩略图,我想要的是原始图像应该在那里。

这是代码

<?php if ( have_posts() ) :
              while ( have_posts() ) : the_post();
                   the_content();//by this am getting the medium sized images from the post content as it is uploaded through add media
              endwhile;
              endif;
        ?>
现在,我想显示每个帖子的完整图像大小。如何做到这一点。

有人能帮忙吗?

2 个回复
最合适的回答,由SO网友:s_ha_dum 整理而成

由于您说您的图像是“通过添加媒体上载”的,因此您需要在将图像附加到帖子时选择全尺寸图像,而不是在尝试显示图像时选择全尺寸图像。您甚至应该在标记中看到(您)选择了较小的大小。

在侧边栏的右侧朝底部看。您应该看到一个下拉列表,可以选择“大小”。

SO网友:luke

这将以全尺寸输出帖子缩略图/特色图像:

<?php
    if ( has_post_thumbnail())
    {
      $full = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), \'full\' );
      echo \'<img src="\' . $full[0] . \'">\';
    } else {
      echo \'No post thumbnail.\';
    }
  ?>

结束

相关推荐

Get 1 more post in loop

例如,在简单循环中:$loop = new wp_query(array(\'posts_per_page\' => 3)); while($loop->have_posts()) : $loop->the_post(); if(get_post_meta($post->ID, \'skip_me\', true) == true){ // do something to ask for one more post, &#x