我正在尝试为 wordpress 创建一个主题,并为该主题创建了一个自定义菜单和侧边栏。但是,对于自定义菜单,它显示在管理页面内,如图所示。我可以知道为什么会发生这种情况以及如何使其仅显示在页面本身上吗?提前感谢客栈。
我的自定义侧边栏和菜单代码:
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' );?>