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效果了。
声明:本文采用 BY-NC-SA 协议进行授权,如无注明均为原创,转载请注明转自 你好!刘
本文地址:设置WordPress内置缩略图
本文地址:设置WordPress内置缩略图
发表评论