在 functions.php 中開啟WordPress的自帶縮圖功能。
1<?php
2
3// 支援 WordPress 2.9 的自帶縮圖功能
4
5if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); } ?>
在 index.php 中的the_content 之前添加以下代碼
1<?php if ( has_post_thumbnail() ) : ?> [<?php the_post_thumbnail( array( 150, 150 ), array( 'class' => 'alignleft' ) ); ?>](<?php the_permalink(); ?>) <?php endif; ?>
自帶縮圖功能目前不支持外鏈圖片。