1

我正在使用它在我的 wordpress 博客上显示图像-

职能:

add_theme_support( 'post-thumbnails' );  
set_post_thumbnail_size( 590, 275, true ); // 590 pixels wide by 275 pixels tall, hard crop mode

指数:

<div class="post-wrap">
      <?php the_post_thumbnail(); ?>
      <?php the_excerpt(__('keep reading', 'grisaille')); ?></div>
      <?php wp_link_pages(
                array(  'before'           => '<p class="pages-links">' . __('Pages:', 'grisaille'),
                        'after'            => '</p>',
                        'next_or_number'   => 'number',
                        'nextpagelink'     => __('Next page', 'grisaille'),
                        'previouspagelink' => __('Previous page', 'grisaille'),
                        'pagelink'         => '%')); ?>
      <p class="postMeta"><small><?php _e('Category', 'grisaille'); ?> <?php the_category(', ') ?> | <?php _e('Tags', 'grisaille'); ?>: <?php the_tags(' '); ?></small></p>

      <hr class="noCss" />
    </li>

    <?php comments_template(); // Get wp-comments.php template ?>

    <?php endwhile; ?>

而不是显示缩略图,我想显示完整的图像。我该如何做到这一点?

4

3 回答 3

3

替换这个:

 <?php the_post_thumbnail(); ?>

...有了这个:

 <?php the_post_thumbnail( 'full' ); ?>
于 2012-04-18T14:44:47.773 回答
1

使用这个功能:

wp_get_attachment_image(get_post_thumbnail_id(get_post(get_the_ID()),'full',0,array('title' => '' ));

检查此链接

于 2012-04-18T13:31:04.213 回答
1

WordPress 核心内置了四种有效尺寸。

the_post_thumbnail('thumbnail');       // Thumbnail (default 150px x 150px max)
the_post_thumbnail('medium');          // Medium resolution (default 300px x 300px max)
the_post_thumbnail('large');           // Large resolution (default 640px x 640px max)
the_post_thumbnail('full');            // Original image resolution (unmodified)

最后一个是你要找的。

于 2016-08-08T09:46:19.073 回答