如果在文章中只插入一張Gallery包含多張圖片,有沒有辦法能取得相簿中的圖片作為縮圖?
現在想到的兩個方法都證明無效了,一個是配合Auto thumbnail插件然後取得特色圖片
<code><?php $array_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array(100,100)); echo $array_image_url[0]; ?></code>
經過測試是無效的,無法將相簿裡的圖片自動設定為縮圖。
第二個方法是取得文章中第一個圖片,透過function.php中增加:
<code>function get_content_first_image($content){ if ( $content === false ) $content = get_the_content(); preg_match_all('|<img.*?src=[\'"](.*?)[\'"].*?>|i', $content, $images); if($images){ return $images[1][0]; }else{ return false; } } </code>
然後在需要呼叫的地方使用:
<code><img src="<?php echo get_content_first_image(get_the_content()); ?>"/> </code>
經過測試也無法取得相簿中的圖片。
wordpress相簿是透過短代碼[gallery id = "..."]插入的。
有什麼辦法能取得相簿中圖片附件的地址嗎?
如果在文章中只插入一張Gallery包含多張圖片,有沒有辦法能取得相簿中的圖片作為縮圖?
現在想到的兩個方法都證明無效了,一個是配合Auto thumbnail插件然後取得特色圖片
<code><?php $array_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array(100,100)); echo $array_image_url[0]; ?></code>
經過測試是無效的,無法將相簿裡的圖片自動設定為縮圖。
第二個方法是取得文章中第一個圖片,透過function.php中增加:
<code>function get_content_first_image($content){ if ( $content === false ) $content = get_the_content(); preg_match_all('|<img.*?src=[\'"](.*?)[\'"].*?>|i', $content, $images); if($images){ return $images[1][0]; }else{ return false; } } </code>
然後在需要呼叫的地方使用:
<code><img src="<?php echo get_content_first_image(get_the_content()); ?>"/> </code>
經過測試也無法取得相簿中的圖片。
wordpress相簿是透過短代碼[gallery id = "..."]插入的。
有什麼辦法能取得相簿中圖片附件的地址嗎?