本文最后更新于 927 天前,文中的信息可能已经有所变化。如有误,请留言反馈。
自动将文中第一张图像设置为特色图像,实测可用。大部分主题都有这个功能了,偶尔会遇到一些“极简”的主题没有此功能,按需添加。
但需注意,如果以前的文章设置有特色图像,则需慎用,会影响之前文章的特色图。
将以下代码加入正在使用的主题 functions.php 文件内即可:
function wpforce_featured() { global $post; $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); } } } } //end function add_action('the_post', 'wpforce_featured'); add_action('save_post', 'wpforce_featured'); add_action('draft_to_publish', 'wpforce_featured'); add_action('new_to_publish', 'wpforce_featured'); add_action('pending_to_publish', 'wpforce_featured'); add_action('future_to_publish', 'wpforce_featured');