WordPress 自動提取文章第一張圖片作為縮略圖

admin wordpress評論821字數(shù) 464閱讀模式
摘要

很多 WordPress 博客的主題都設(shè)計了首頁顯示文章縮略圖,但其中大部分是采用 WordPress 自定義字段實現(xiàn)的(移步WordPress 博客自定義字段實現(xiàn)日志縮略圖),這樣每次都要手動添加縮略圖,顯然很麻煩。所以最好的方法便是自動獲取,下面博客吧來介紹下 WordPress 自動顯示文章第一張圖片的方法。

WordPress 自動獲取文章第一張圖片:
在當前使用的主題模板的functions.php文件中添加以下代碼:

  1. function catch_that_image() {  
  2. global $post, $posts;  
  3. $first_img = '';  
  4. ob_start();  
  5. ob_end_clean();  
  6. $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); 
  7. $first_img = $matches [1] [0]; 
  8. if(empty($first_img)){ //Defines a default image 
  9. $first_img = "/images/default.jpg";  
  10. }  
  11. return $first_img;  
  12. }  

在當前主題模板的index.php文件的內(nèi)容代碼前或后添加以下代碼:

  1. <?php echo catch_that_image() ?>  

版權(quán)聲明:文章圖片資源來源于網(wǎng)絡(luò),如有侵權(quán),請留言刪除!!!
廣告也精彩
admin
  • 本文由 發(fā)表于 2021年9月27日 17:30:36
  • 轉(zhuǎn)載請務(wù)必保留本文鏈接:http://yudch.cn/7723.html
匿名

發(fā)表評論

匿名網(wǎng)友 填寫信息

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