我正在使用Woocommerce店面主题,我想用我在elementor中创建的自定义标题替换原始标题。我有一个新标题的简码,但我不知道如何将其插入代码中。我正在使用一个空白的店面子主题,并且有一个功能.php文件和样式.css文件。
感谢您的帮助。
只需从父主题复制标题.php并将其粘贴到子主题中即可。然后,您已经可以将自定义代码放入其中。
参考: codex.wordpress.org/Child_Themes
您可以通过
在子主题中使用钩子来执行此操作init
像这样:
add_action('init', 'replace_header' );
function replace_header(){
remove_action( 'storefront_header', 'storefront_primary_navigation', 50 );
add_action('storefront_header', 'my_custom_header', 50);
}
function my_custom_header(){
do_shortecode('[your_elementor_header_shortcode attr1="value1"]')
}