2015-11-20 89 views
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'); 

回答

0

我想通了。

function remove_first_image ($content) { 

    if (!is_page() && !is_feed() && !is_feed() && !is_home()) { 
     if(has_term(array('entertainment', 'food', 'home', 'travel'), 'category')) 
      $content = preg_replace("/<img[^>]+\>/i", "", $content, 1); 
    } 

    return $content; 

} 
add_filter('the_content', 'remove_first_image'); 
0

可以使用in_category有條件的功能

function remove_first_image ($content) { 
    if (in_category('catslug')) { 
     $content = preg_replace("/<img[^>]+\>/i", "", $content, 1); 
    } 
    return $content; 
} 
//add_filter('the_content', 'remove_first_image');