因為要改版一個功能希望取文章中所有圖片中的第一張圖片作為縮略圖了,下面我就來給各位同學分享一個我整理了函數,希望對大家有幫助,wordpress取得文章中第一張圖片url,代碼如下:
- function catch_that_image() {
- global $post, $posts;
- $first_img = '';
- ob_start();
- ob_end_clean();
- $output = preg_match_all('/<img.+src=['"]([^'"]+)['"].*>/i', $post->post_content, $matches);
- $first_img = $matches [1] [0];
- // no image found display default image instead
- if(emptyempty($first_img)){
- $first_img = "/images/default.jpg";
- } www.49028c.com
- return $first_img;
- }
新聞熱點
疑難解答
圖片精選