专注云服务商活动
网站运营运维笔记

无需插件设置wordpress文章第一个图片设为特色图片

有些主题中我们忘记手动设置缩略图的话可以让文章中的内容图片第一张图设置缩略图,这里我们可以用到这个代码

/* ------------------------------------------------------------------------- *
* 设置文章第一个图片自动为特色图片
/* ------------------------------------------------------------------------- */
function autoset_featured_image(){
    global $post;
    if (!isset($post->ID)) return;
    $already_has_thumb = has_post_thumbnail($post->ID);
    if (!$already_has_thumb){
        $attached_image = get_children("post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1");
        if ($attached_image){
            foreach ($attached_image as $attachment_id =>$attachment) {
                set_post_thumbnail($post->ID,$attachment_id);
            }
        }/*else {
            //如果文章里没有图片,设置默认的一张图
            set_post_thumbnail($post->ID, '8888');
           //上面代码里的$post->ID, ‘8888’这个8888就是图片ID,自己在网站媒体库找一张图改一下ID吧。
        }*/
    }
}
add_action('save_post', 'autoset_featured_image');

 

投上你的一票
域名主机商优惠信息推送QQ群: 627775477 获取商家优惠推送,禁言。
赞(0)
未经允许不得转载:老左笔记 » 无需插件设置wordpress文章第一个图片设为特色图片