升级到wordpress3.0之后,会发现多了一些功能,其中一个是在 “外观”下多了个 Menus 选项。点开后你会发现一个提示 “The current theme does not natively support menus, but you can use the “Custom Menu” widget to add any menus you create here to the theme’s sidebar.” 意思是这个主题不支持这个功能,但是你可以在 小工具里使用“Custom Menu”在 sidebar 里实现。 通过 register_nav_menus( $locations = array() ); 可以激活该功能。 例如 if ( function_exists( 'register_nav_menus' ) ) { register_nav_menu( array( 'location_1' => [...]