在查询中,您应该使用the_post_thumbnail.
<?php the_post_thumbnail( $size, $attr ); ?>
大小是关键字或数组,属性用于图像标记。
比如说
<?php
the_post_thumbanil(\'large\', array(\'class\' => \'my-class\'));
?>
将输出:
<img src=\'img-large.jpeg\' class=\'my-class\' />
还可以指定特定大小:
<?php
the_post_thumbnail(array(100, 100), array(\'class\' => \'my-class\'));
?>