2013-05-01 87 views
2

我正在嘗試爲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');?> 

回答

0

wp_nav_menu()打印的導航菜單,屬於像如header.php。從註冊功能中刪除它。

相關問題