Site logo

Archived topic

search result columns first post full width

3 replies · Started by Nikolaj on May 31, 2017

Viewing posts 1–4 of 4

when running the theme with columns and choosing the First Post Full Width option is it possible to turn this one off in the search view so that the search results look the same?

Hi there,

Try this function:

add_filter( 'post_class', 'tu_no_search_featured_column', 20 );
function tu_no_search_featured_column( $classes ) {
	if ( is_search() ) {
		$classes = array_diff( $classes, array( 'featured-column' ) );
	}
	
	return $classes;
}

thanks - as always your solutions just works - great.

BTW is it possible to add a 3 or 4 column view for the search only when using a 2 column in the blog posts?

This archived topic is closed to new replies.