在需要获取缩略图的地方插入以下代码
<?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; }
muzi2050
微信号已复制
博客声明
本站部分内容来自网络转载或作者投稿,如果我们侵犯了您的权益,请用微信扫描左侧二维码联系我们删除。
评论