在init操作上,删除调用其函数的操作,并将调用(不同名称)函数的操作排入队列,如下所示:
add_action(\'init\', \'wpse_80107_init\');
function wpse_80107_init() {
// remove parent theme\'s header content action
remove_action(\'cyberchimps_header_content\', \'cyberchimps_logo_icons\');
// add child theme\'s header content action
add_action(\'cyberchimps_header_content\', \'wpse_80107_logo_icons\');
}
function wpse_80107_logo_icons() {
// your custom code here
}