这是修改后的代码twentyten
这就是你想要的。把这个放进去header
或者在您希望图像运行的任何位置。请参见字符串post-thumbnail
-- 这就是尺寸。确保它被定义为940 x 180
在里面functions.php
if ( is_singular() && current_theme_supports( \'post-thumbnails\' ) &&
has_post_thumbnail( $post->ID ) &&
($image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), \'post-thumbnail\' ) ) &&
$image[1] >= 940 ) :
// Houston, we have a new header image!
echo get_the_post_thumbnail( $post->ID );
elseif ( get_header_image() ) : ?>
<img src="<?php header_image(); ?>" width="940" height="180" alt="" />
<?php endif; ?>
可追溯到
header_image
如果设置了。可以随意更改大小。