仅换出已登录用户的主菜单

时间:2018-04-02 作者:Justin Blayney

我在网上找到了这个教程,它允许我为登录和注销的用户提供不同的菜单http://www.wpbeginner.com/wp-themes/how-to-show-different-menus-to-logged-in-users-in-wordpress/

它工作得很好,除了一件事,它交换了我所有的菜单,我只想更改标题中的主菜单,而不是侧边栏菜单

1 个回复
SO网友:Nicolai Grossherr

您拥有$args 阵列自wp_nav_menu() 可获得的您可以将它们与wp_nav_menu_args 滤器在您的情况下,您可能希望使用theme_locationmenu. 示例性用法:

add_filter( \'wp_nav_menu_args\', \'check_for_args_element\' );
function check_for_args_element( $args ) {
  if ( $args[ \'theme_location\' ] == \'main\' ) {
    // code
  }
  return $args;
}

结束