Skip to content

Snippet: Override Header Menu Search Style

add_filter( 'totaltheme/header/menu/search/style', function( $style ) {
    $style = 'overlay';
    return $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