1

これを使用して、ワードプレスのブログに画像を表示しています-

機能:

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

WordPress コアには 4 つの有効なサイズが組み込まれています。

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 に答える
1

この関数を使用します。

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

このリンクを確認してください

于 2012-04-18T13:31:04.213 に答える