function get_mosted_link_nav_menu() {
$menus = wp_get_nav_menus();
if ( is_wp_error( $menus ) || empty( $menus ) )
return false;
$counts = wp_list_pluck( $menus, 'count' );
$menus = array_combine( $counts, $menus );
ksort( $menus );
$menus = array_reverse( $menus );
$menus = array_values( $menus );
$menu = array_shift( $menus );
if ( empty( $menu->count ) )
return false;
return $menu;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.