Face Art
Under Appearance > Editor, select ‘functions.php’ on the right and insert the following:
1 2 3 4 5 6 7 8 |
<?php function remove_nav_filter() { remove_filter('wp_nav_menu', 'templatemela_add_menu_first_last_class'); } add_action('init', 'remove_nav_filter'); ?> |