skip to Main Content

Display Search Results Like Your Blog

function my_custom_search_style() {
    return 'blog';
}
add_filter( 'wpex_search_results_style', 'my_custom_search_style' );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)
Back To Top