有些主题中我们忘记手动设置缩略图的话可以让文章中的内容图片第一张图设置缩略图,这里我们可以用到这个代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/* ------------------------------------------------------------------------- * * 设置文章第一个图片自动为特色图片 /* ------------------------------------------------------------------------- */ 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'); |
声明:本站发布的所有资源均来自于互联网,所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。
如侵犯到您的权益,请及时通知我们,我们会及时处理。邮箱:505289534@qq.com
评论(0)