注册WordPress的单本一菜单很简单,这里就不再讲述了。现在给大家说一下一个WordPress网站怎么注册两个菜单项以及怎么用函数wp_nav_menu(); 来调用它们。

1、在functions.php加入以下代码:

add_theme_support('nav-menus');
 register_nav_menus(
 array(
 'primary' => __( 'Primary Navigation' ),
 'second' => __('Second Navigation')
 )
 );

2、然后你就可以在你需要的地方进行调用,如果你想在头部进行调用,那么把以下代码加到header.php.

<php wp_nav_menu(
 array(
 'theme_location' => 'primary',
 'container' => false,
 'echo' =>false,
 'items_wrap' => '%3$s',
 'depth' => 0,
 );
); ?>

3、同理,你也可以调用第二个菜单,只需把'theme_location' => 'primary', 中的primary换成second即可。

Last modification:April 11th, 2020 at 09:18 pm
如果觉得我的文章对你有用,请随意赞赏