·设为首页收藏本站📧邮箱修改🎁免费下载专区📒收藏夹👽聊天室
返回列表 发布新帖

wordpress里更新文章如何自动摘取第一张图片作为缩略图特色图?

57 2
发表于 13 小时前 | 查看全部 阅读模式

马上注册,免费下载更多dz插件网资源。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
有没有人知道wordpress里更新文章如何自动摘取第一张图片作为缩略图/特色图?
我要说一句 收起回复

评论2

CrystαlLv.8 发表于 13 小时前 | 查看全部
  1. /** * 自动设置文章的第一张图片为特色图片 */function auto_set_featured_image($post_id) {    // 排除自动保存、修订版本和非文章类型    if (        defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ||        wp_is_post_revision($post_id) ||        get_post_type($post_id) !== 'post'    ) {        return;    }    // 检查是否有现有特色图片    if (!has_post_thumbnail($post_id)) {        $post = get_post($post_id);        // 使用正则匹配第一张图片        preg_match('//i', $post->post_content, $matches);        if ($matches) {            $image_url = $matches[1];            $upload_dir = wp_upload_dir();            // 处理本地图片            if (strpos($image_url, $upload_dir['baseurl']) === 0) {                $attachment_id = attachment_url_to_postid($image_url);                if ($attachment_id) {                    set_post_thumbnail($post_id, $attachment_id);                    return;                }            }            // 处理远程图片            require_once(ABSPATH . 'wp-admin/includes/media.php');            require_once(ABSPATH . 'wp-admin/includes/file.php');            require_once(ABSPATH . 'wp-admin/includes/image.php');            try {                $tmp = download_url($image_url);                if (is_wp_error($tmp)) {                    @unlink($tmp);                    return;                }                $file_array = array(                    'name' => basename($image_url),                    'tmp_name' => $tmp                );                $attachment_id = media_handle_sideload($file_array, $post_id);                if (!is_wp_error($attachment_id)) {                    set_post_thumbnail($post_id, $attachment_id);                }                @unlink($tmp);            } catch (Exception $e) {                return;            }        }    }}add_action('save_post', 'auto_set_featured_image');
复制代码
添加到当前主题的 functions.php 文件中
我要说一句 收起回复
CrystαlLv.8 发表于 13 小时前 | 查看全部
基本主题都自带吧
我要说一句 收起回复

回复

 懒得打字嘛,点击右侧快捷回复【查看最新发布】   【应用商城享更多资源】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

投诉/建议联系

discuzaddons@vip.qq.com

未经授权禁止转载,复制和建立镜像,
如有违反,按照公告处理!!!
  • 联系QQ客服
  • 添加微信客服

联系DZ插件网微信客服|最近更新|Archiver|手机版|小黑屋|DZ插件网! ( 鄂ICP备20010621号-1 )|网站地图 知道创宇云防御

您的IP:3.145.123.66,GMT+8, 2025-3-9 21:44 , Processed in 0.241208 second(s), 80 queries , Gzip On, Redis On.

Powered by Discuz! X5.0 Licensed

© 2001-2025 Discuz! Team.

关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表