目录
wordpress 特色图像可以用于分类页面或者网站首页调用文章缩略图时,指定调用某张图片,实现自定义封面的效果。如下图:
如何开启特色图像功能
WORDPRESS程序默认是不支持特色图像功能,所以我们需要开启特色图像功能。wordpress 特色图像开启方法很简单,只需要在主题的functions.php中添加如下代码:
//特色图像
add_theme_support( "post-thumbnails" );
特色图像的使用
在wordpress首页模板或者分类模板中使用以下代码调用特色图像:(自行修改代码里的尺寸数字)
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(array(296,296),array('alt'=> trim(strip_tags( $post->post_title ))));} else {?><img src="<?php%20echo%20get_first_image();%20?>" alt="<?php the_title(); ?>" width="296px" height="296px"/><?php }?>
这样,在网站后台发布文章时,在文章编辑器右侧面底部就会有一个【特色图片】上传按钮,就可以给文章上传一个指定的图片作为封面图片了。
THE END
暂无评论内容