Answers for "how to add cutom menu option in wordpress"

PHP
1

how to add cutom menu option in wordpress

function wpb_custom_new_menu()
{
    register_nav_menus(
        array(
            'my-custom-menu' => __('My Custom Menu'),
            'extra-menu' => __('Extra Menu')
        )
    );
}
add_action('init', 'wpb_custom_new_menu');
Posted by: Guest on March-09-2022

Code answers related to "how to add cutom menu option in wordpress"

Browse Popular Code Answers by Language