glisten牛人大佬:
之前的主题是首图自动显示在封面上,换了个主题不支持首图显示封面,有什么插件可以批量设置首图是封面的吗

嗷嗷牛人大佬:
这个俺也不晓得

​​​​​​​

流河旱树牛人大佬:
加到functions.php文件里

  1. // Auto add featured image
  2. function wpsites_auto_set_featured_image() {
  3.    global $post;
  4.    $featured_image_exists = has_post_thumbnail($post->ID);
  5.       if (!$featured_image_exists)  {
  6.          $attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
  7.          if ($attached_image) {
  8.             foreach ($attached_image as $attachment_id => $attachment) {set_post_thumbnail($post->ID, $attachment_id);}
  9.          }
  10.       }
  11. }
  12. add_action(‘the_post’, ‘wpsites_auto_set_featured_image’);