wordpress 特色图像开启与使用

2018-11-02    来源:学做网站论坛

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

wordpress 特色图像可以用于分类页面或者网站首页调用文章缩略图时,指定调用某张图片,实现自定义封面的效果。如下图:

wordpress 特色图像开启方法

如何开启特色图像功能

在学习wordpress模板制作课程时,我们讲了,WORDPRESS程序默认是不支持特色图像功能,所以我们需要开启特色图像功能。

wordpress 特色图像开启方法很简单,只需要在主题的functions.php中添加如下代码:

//特色图像
add_theme_support( "post-thumbnails" );

特色图像的使用

在wordpress文章模板(single.php)中使用以下代码调用特色图像:

<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>

可以调用不同尺寸的图片

the_post_thumbnail(); // 无参数,默认调用Thumbnail
the_post_thumbnail('thumbnail'); // Thumbnail (默认尺寸 150px x 150px max)
the_post_thumbnail('medium'); // Medium resolution (default 300px x 300px max)
the_post_thumbnail('large'); // Large resolution (default 640px x 640px max)
the_post_thumbnail('full'); // Full resolution (original size uploaded)
the_post_thumbnail( array(100,100) ); // Other resolutions

访问后台>>设置>>媒体,缩略图大小这一项就是特色图像(Featured Image or Thumbnail)的尺寸,也就是the_post_thumbnail()不加参数时调用的图片的尺寸。根据需要修改其参数即可。上传图片时WordPress会自定生成这个尺寸的图片。

media-500x194

添加特色图像:wordpress文章添加特色图像的3种方法:?https://www.xuewangzhan.com/wpbbs/13457.html

标签: 代码 媒体

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:如何让wordpress长文章分页

下一篇:wordpress 文章类型介绍与启用