1
我目前使用此功能從我的帖子中刪除第一張圖片,但是,我需要從特定類別的帖子中刪除第一張圖片。任何幫助深表感謝。wordpress函數刪除特定類別帖子中的第一張圖片
function remove_first_image ($content) {
if (!is_page() && !is_feed() && !is_feed() && !is_home()) {
$content = preg_replace("/<img[^>]+\>/i", "", $content, 1);
}
return $content;
}
//add_filter('the_content', 'remove_first_image');