2010-09-10 35 views
0

我已經添加了使wpautop過濾器下面我WordPress主題functions.php文件:單隻的帖子

//disable wpautop filter 
remove_filter ('the_content', 'wpautop'); 
remove_filter ('the_excerpt', 'wpautop'); 

剝離了周圍的一切所有那些討厭<p> </p>標籤WordPress的包裹!

但是,我想知道是否有辦法只對非單頁(例如:home,archive,category,author等)進行此操作。我想禁用wpautop除了單個帖子和頁面...可能嗎?

回答

4
function get_rid_of_wpautop(){ 
    if(!is_singular()){ 
    remove_filter ('the_content', 'wpautop'); 
    remove_filter ('the_excerpt', 'wpautop'); 
    } 
} 

add_action('template_redirect', 'get_rid_of_wpautop'); 

添加到您的主題的functions.php文件。