Skip to content

Snippet: 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 (100% Free) or WPCode (sponsored)
Back To Top