我使用這個對我的wordpress顯示圖像blog-php&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; ?>
而不是顯示縮略圖時,我想顯示完整圖像。我該如何做到這一點?
這是wordpress,不是PHP! – 2012-04-18 13:22:36
它仍然是PHP。 – Michelle 2012-04-18 13:24:48
@YourCommonSense WordPress的沒有它的唯一代碼,它仍然是PHP .. – AMC 2012-04-18 13:27:34