我在子主题中有一些要覆盖的功能, 但继续获取无法重新声明langs_content()。
【在子主题中覆盖父主题函数】我用了很多资源进行故障排除, 有些应该直接说明, 但我无法解决
<
?php
function enqueue_parent_theme_style() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style' );
function enqueue_child_theme_style() {
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri().'/style.css' );
}
//require_once( get_stylesheet_directory() . '/functions.php');
add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_style', 100 );
if ( ! function_exists( 'langs_content' ) ) {
/*
* My Awesome function is awesome
*
*/
function langs_content( $atts, $content = null ) // shortcode lang
{
$lang = the_lang();
extract( shortcode_atts( array(), $atts ) );
$langs_content = '';
if(in_array($lang, $atts))
{
$langs_content .= do_shortcode($content);
}
return $langs_content;
}
add_shortcode('lang', 'langs_content');
}?>
#1真的很简单!从init钩子中删除简码, 然后添加新的; -)
像这样 :
/******
* Inside parent functions.php (don't touch this!)
******/
function test_shortcode() {
return "Hello World from parent theme";
}add_shortcode('test_shortcode', 'test_shortcode');
/******
* Inside child functions.php
******/
function child_test_shortcode()
{
return "Hello World from child theme";
}function remove_parent_theme_shortcodes()
{
remove_shortcode('test_shortcode');
// Add our new function with the same shortcode
add_shortcode('test_shortcode', 'child_test_shortcode');
}// Remove the shortcode with init hook
add_action('init', 'remove_parent_theme_shortcodes');
推荐阅读
- Owl轮播-使用上一个/下一个跳过过去的图像
- 智慧楼宇办公时代来啦!你准备好了吗()
- 一篇超详细的vue项目前端自动化测试教学!
- 认识Java项目开发效率工具 Lombok
- prometheusblackbox_exporter
- MongoDB认证与授权
- kube-eventer事件监控
- 你会用ES6,那倒是用啊!
- 想了解Xtrabackup备份原理和常见问题分析,看这篇就够了