设置WordPress内置缩略图

转自点点 14 年前 回复

, ,

WordPress 2.9已经内置了缩略图的功能,但没有直接启用。如何启用缩略图的功能呢?方法很简单,就是在你所用的主题的functions.php文件中添加:
if ( function_exists( ‘add_theme_support’ ) ) {
add_theme_support( ‘post-thumbnails’ );
}
添加完这个以后,侧边栏已经出现了缩略图的选择了。如何调用文章的缩略图?
在主题的index.php或者archive.php中
找到
< ?php the_content('Read the rest of this entry »'); ? >
类似代码,在其上方添加代码
< ?php if ( has_post_thumbnail() ) : ? >
< ?php the_post_thumbnail( array( 125, 125 ), array( 'class' => ‘alignleft’ ) ); ? >
< ?php endif; ? >
其中,arry(125, 125)是说缩略图的大小,同样也可以根据后台的设置,指定为thumbnail、medium、large或者full。
至于array( ‘class’ => ‘alignleft’ ),指定的就是图片的class效果了。

支付宝打赏微信打赏

如果此文对你有帮助,欢迎打赏作者。

发表评论

欢迎回来 (打开)

(必填)