這似乎是一個常用的功能,以獲得第一圖像出來後獲取一個WordPress第一圖像的其他屬性後
function get_first_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];
if(empty($first_img)){ //Defines a default image
$first_img = "/images/default.jpg";
}
return $first_img;
}
這隻返回的src。我需要這個擴展,以返回該圖像的標題,標題和描述在一個數組中。如何才能做到這一點??
試試這個http://www.rlmseo.com/blog/get-images-attached-to-post/ – 2012-04-06 19:58:02