I would like to get what is in the title please but I cannot do it alone.
Need some help cause I guess it’ possible with this code but I don’t knkow how to modify it.
This code is for “search” and I would like to get 2 columns for the category ID 77
Thank you
add_filter( 'generate_blog_get_column_count','tu_search_column_count' );
function tu_search_column_count( $count ) {
if ( is_search() ) {
return 33;
}
return $count;
}