抱歉,如果这是一个重复的问题,我只想更改一下WordPress的核心功能get_header()
具有新功能new_get_header()
.
function new_get_header() {
// new header fragments;
}
Is this possible?
add_filter( \'get_header\', \'new_get_header\' );
Or should I use:
add_action( \'init\', \'new_get_header\' );
并将其作为函数而不是原始函数调用。
new_get_header();
// Content
// Footer
SO网友:Samuel Asor
In my opinion, 我认为修改WordPress的核心功能不是一个好主意。如果需要从函数中添加或删除某些内容,请执行
add_filter( \'core_function_name\', \'your_custom_function\' );
或
add_action( \'core_function_name\', \'your_custom_function\' );
将为您提供所需的结果。