function get_rid_of_wpautop(){
if(!is_single() && !is_page(array(79,81))){
remove_filter ('the_content', 'wpautop');
remove_filter ('the_excerpt', 'wpautop');
}
}
add_action( 'template_redirect', 'get_rid_of_wpautop' );
Seems to do the trick.
WordPress version: 3.5.1
WordPress SEO version: 1.4.7
I did this: tried to remove Home fromn site page, I have it set up display a static page.
I expected the plugin to do this: remove the link on the home page.
Instead it did this: it still said Home.
Ok seems like I am having trouble with wp_title()
How can I remove the blog name from the wp_title?