565 | | echo '<p>' . sprintf( _n( 'Your theme supports %s menu. Select which menu you would like to use.', 'Your theme supports %s menus. Select which menu appears in each location.', $num_locations ), number_format_i18n( $num_locations ) ) . '</p>'; |
| 565 | $text = apply_filters( 'nav_menu_theme_support_text', _n( 'Your theme supports %s menu. Select which menu you would like to use.', 'Your theme supports %s menus. Select which menu appears in each location.', $num_locations ), $num_locations ); |
| 566 | echo '<p>' . sprintf( $text , number_format_i18n($num_locations) ) . '</p>'; |