wordpress自动获取文章第一张图片代码

宁静 评论266字数 409阅读模式

在需要获取缩略图的地方插入以下代码

<?php echo wp_content_image(); ?>" />

将以下代码插入functions.php

function wp_content_image() {
  global $post;
  $first_img = '';
  ob_start();
  ob_end_clean();
  $output = preg_match_all('/<img*.+src=[\'"]([^\'"]+)[\'"].*>/iU', wp_unslash($post->post_content), $matches);
  if(empty($output)){ 
    $first_img = "https://ksj.ruqm.com/wp-content/uploads/2024/02/202402031325574916.jpeg";
  }else {
    $first_img = $matches [1][0];
  }
  return $first_img;
}

weinxin
muzi2050
博客声明
本站部分内容来自网络转载或作者投稿,如果我们侵犯了您的权益,请用微信扫描左侧二维码联系我们删除。
 
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

拖动滑块以完成验证