管理页面上显示自定义菜单

时间:2013-05-01 12:17:12

标签: php wordpress

我正在尝试为wordpress创建一个主题,并为主题创建了一个自定义菜单和侧边栏。但是,对于自定义菜单,它会显示在管理页面内,如图所示。我能知道为什么会发生这种情况以及如何让它只在页面上显示吗?谢谢客栈提前。 enter image description here

自定义侧边栏和菜单的代码:

function custom_menu() {
$args = array(
    'theme_location'  => '',
    'menu'            => '',
    'container'       => 'div',
    'container_class' => '',
    'container_id'    => '',
    'menu_class'      => 'menu',
    'menu_id'         => '',
    'echo'            => true,
    'fallback_cb'     => 'wp_page_menu',
    'before'          => '',
    'after'           => '',
    'link_before'     => '',
    'link_after'      => '',
    'items_wrap'      => '<ul id="%1$s" class="%2$s">%3$s</ul>',
    'depth'           => 0,
    'walker'          => ''
    );

wp_nav_menu($args);
register_nav_menu( 'primary', 'primary_menu');}


function custom_sidebar()  {
$args = array(
    'id'            => 'sidebar_nav',
    'name'          => __( 'Sidebar', 'text_domain' ),
    'description'   => __( 'Sidebar Description', 'text_domain' ),
    'class'         => '',
    'before_title'  => '<h2 class="widgettitle">',
    'after_title'   => '</h2>',
    'before_widget' => '<li id="%1$s" class="widget %2$s">',
    'after_widget'  => '</li>',
);

register_sidebar( $args );}

add_action( 'widgets_init', 'custom_sidebar' );?>

1 个答案:

答案 0 :(得分:0)

wp_nav_menu()打印导航菜单,并且属于主题模板文件,例如, header.php。将其从注册功能中删除。