我的WordPress網站使用第一圖像後縮略圖,代碼:默認的縮略圖
add_filter('the_content','replace_content');
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)) {
$first_img = "/path/to/default.png";
}
return $first_img;
}
有些崗位在內容上沒有圖像,所以我想用不同的默認縮略圖它們:職位A類使用圖片1,在cagory B在使用產品組別的職位...
我怎樣才能做到這一點? 謝謝
感謝,讓我試試我用first_image我的網站 –