Skip to content

Snippet: Use Theme Icon for the Mobile Menu Hamburger Icon

add_filter( 'wpex_mobile_menu_open_button_text', function() {
    return wpex_get_theme_icon_html( 'bars' );
} );
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