test01
test01 desu
if ( ! function_exists( 'custom_navigation_menus' ) ) { // Register Navigation Menus function custom_navigation_menus() { $locations = array( 'test1' => __( 'test01', 'text_domain' ), 'test2' => __( 'test02', 'text_domain' ), ); register_nav_menus( $locations ); } // Hook into the 'init' action add_action( 'init', 'custom_navigation_menus' ); }