我經常使用這個功能來提取後的圖像:WP/PHP函數來提取圖像不起作用
function first_post_image($content) {
$first_img = '';
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $content, $matches);
$first_img = $matches [1] [0];
return $first_img;
}
然後我展示用下面的代碼
<?php $postimage = first_post_image(get_the_content()); ?> // catch the image
<img src="<?php echo $postimage; ?>" /> //view the image
圖像
現在我嘗試在我的最後一個模板(wp)中使用此功能,但圖像未顯示。我可以看到標籤img和src屬性,但它是空的。
有人可以幫助我嗎?謝謝