boxmoe_header_banner_img

Hello! 欢迎来到盒子萌!

加载中

文章导读

wordpress懒人写作模式自动设置文章的第一张图为特色图像


avatar
专收爆米花 2018年9月28日 4.81k

主题实际已经设置自动搜索文章第一张图片作为缩略图了,但是有时候图片太大就导致了缩略图也很大,加载反而变慢,又懒得每次手动设置特色图像,所以这段代码可以自动把文章中上传的第一张图片设置为特色图像,缺点就是不支持外链图片

function autoset_featured_image() {
    global $post;
    if (!is_object($post)) 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);
            }
        }
    }
}
add_action( 'the_post', 'autoset_featured_image' );
add_action( 'save_post', 'autoset_featured_image' );
add_action( 'draft_to_publish', 'autoset_featured_image' );
add_action( 'new_to_publish', 'autoset_featured_image' );
add_action( 'pending_to_publish', 'autoset_featured_image' );
add_action( 'future_to_publish', 'autoset_featured_image' );


评论(4)

查看评论列表
评论头像
会发光的良辰? 2018年11月03日
嘤嘤嘤
评论头像
专收爆米花 博主 2018年11月04日
嘤嘤嘤嘤
评论头像
tmh 2024年12月09日
在开发一下 缩略图 尺寸代码啊
评论头像
专收爆米花 博主 2024年12月10日
这个wp后台本身可以设置尺寸的啊

发表评论

表情 颜文字
插入代码