Unregister the Secondary Navigation Menu

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code needed to unregister the secondary navigation menu:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Unregister secondary navigation menu
add_theme_support( 'genesis-menus', array( 'primary' => __( 'Primary Navigation Menu', 'genesis' ) ) );
What are your feelings