使用弯钩更改元素的位置

时间:2017-07-25 作者:Louis

我正在使用店面(Woocommerce主题)。

我创建了一个儿童主题。

我想将辅助导航移动到主菜单下方。

我将此添加到函数中。php的子主题,但它不工作。

有什么想法吗?

谢谢

<?php

remove_action( \'storefront_header\', \'storefront_secondary_navigation\', 30 );
add_action( \'storefront_header\', \'storefront_secondary_navigation\', 52 );

?>

1 个回复
最合适的回答,由SO网友:1naveengiri 整理而成

而不是像这样添加和删除挂钩。你应该做一些动作/钩子的工作。在这些钩子之前着火。

所以你可以这样称呼它

add_action( \'init\' , \'sf_change_header_position\' , 10 );
function sf_change_header_position() {
   remove_action( \'storefront_header\', \'storefront_secondary_navigation\', 30 );
   add_action( \'storefront_header\', \'storefront_secondary_navigation\', 52 );
}

结束

相关推荐

Hooks for Links Box

Possible Duplicate:Getting archive pages in WP's AJAX internal link finder? 新的有挂钩吗internal links box 创建于WP 3.1? 我正在尝试在插件中修改它。