Guest User

Untitled

a guest
Jul 16th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_filter( 'electro_shop_layout', 'ec_make_search_results_full_width', 20 );
  2.  
  3. function ec_make_search_results_full_width( $layout ) {
  4. if ( is_search() ) {
  5. $layout = 'full-width';
  6. }
  7. return $layout;
  8. }
Add Comment
Please, Sign In to add comment