Skip to content

Instantly share code, notes, and snippets.

@premanshup
Created January 14, 2020 14:56
Show Gist options
  • Select an option

  • Save premanshup/c2aca9cdaaa86384db86c3d953877079 to your computer and use it in GitHub Desktop.

Select an option

Save premanshup/c2aca9cdaaa86384db86c3d953877079 to your computer and use it in GitHub Desktop.
Change Blog Grid from 3 to 2 for Search Page
add_action( 'wp', 'astra_search_grid_check', 15 );
function astra_search_grid_check() {
if( is_search() ) {
add_filter( 'astra_get_option_blog-grid', 'astra_change_grid_search_page', 15, 3 );
}
}
function astra_change_grid_search_page( $value, $option, $default ) {
$value = '2';
return $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment