无需插件即可轻松完成以下步骤:
1) 在您的功能中。php
if ( function_exists( \'add_theme_support\' ) ) {
add_theme_support( \'post-thumbnails\' );
// Default Post thumbnail dimensions (cropped)
add_image_size( \'banner_image\', 1140, 500, true );
}
2)循环中的此代码,例如索引。php,单个。php等。
<?php if ( has_post_thumbnail() ) { // check for feature image ?>
<div class="post-image">
<?php the_post_thumbnail(\'banner_image\'); ?>
</div><!-- post-image -->
<?php } ?>