Genesis菜单重复而不是移动

时间:2013-06-03 19:46:52

标签: php wordpress menu navigation

我正在创建一个创世纪网站,我需要将标准导航菜单移到标题上方。我在我的子主题的functions.php文件中使用以下代码:

remove_action( 'genesis_after_header', 'genesis_do_nav' );
add_action( 'genesis_before_header', 'genesis_do_nav' );

它在标题之前添加了一个导航菜单,但没有删除标题之后的导航菜单。 “after header”之一被正确放置在输出中,所以我知道我在“remove_action”上使用了正确的钩子。除了为页脚指定菜单和添加说明之外,我的functions.php文件中没有其他任何内容可以处理导航。下面是我的functions.php文件中的所有代码(跳过处理列短代码的大部分内容):

add_action('genesis_setup','child_theme_setup', 15);
function child_theme_setup() {
    //Add Homepage Sidebar
    genesis_register_sidebar( array( 'name' =>
    'Home Sidebar', 'id' => 'home-sidebar' ) );
    //Adds footer widgets
    add_theme_support( 'genesis-footer-widgets', 6 );
    //Adds Footer Text Replace
    remove_action( 'genesis_footer', 'genesis_do_footer' );
    remove_action('genesis_footer', 'genesis_footer_markup_open', 5);
    remove_action('genesis_footer', 'genesis_footer_markup_close', 15);
    add_action( 'genesis_after', 'be_footer' );
}

//Function to replace the footer text and copyright
function be_footer() {
    echo '<div id="footer" class="footer"><div class="footer-wrap"><div class="left"><p>© Copyright ' . date('Y') . ' RC Auto |<a href="http://www.watrousmedia.com/">Watrous Media</a></p></div>';
    echo '<div class="right">';
    wp_nav_menu( array( 'menu' => 'footer' ) );
    echo '</div></div></div>';
}
//Add Menu Descriptions
function be_add_description( $item_output, $item ) {
$description = $item->post_content;
if (' ' !== $description )
return preg_replace( '/(<a.*?>[^<]*?)</', '$1' . '<span>' . $description . '</span><', $item_output);
else
return $item_output;
}
add_filter( 'walker_nav_menu_start_el', 'be_add_description', 10, 2 );

// Use shortcodes in widgets
add_filter( 'widget_text', 'do_shortcode' );

/** Move primary nav menu to before header for mobile support*/
remove_action( 'genesis_after_header', 'genesis_do_nav' );
add_action( 'genesis_before_header', 'genesis_do_nav' );

以下是截图:

Notice the duplicated menu on top and bottom

主菜单是在小部件中添加的样式,因为我在标题中需要它。我计划使用的主菜单作为响应式移动菜单。任何人都知道为什么下导航没有移除?

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

我也有这个问题,在子主题的functions.php文件的开头添加以下代码修复它:

require_once( get_template_directory() . '/lib/init.php' );

您也可以在remove_action( 'genesis_after_header', 'genesis_do_nav' );功能中移动child_theme_setup()

要求init.php将确保首先初始化genesis框架,因此在函数文件中的所有内容将能够引用genesis函数。如果您正在使用genesis_setup操作,则需要确保需要引用框架以供参考的函数在该函数内运行。