我看到每个主题都使用这种格式
if( !function_exists( \'blogrock__f\' )) :
function blogrock__f () {
/// code here
}
endif;
add_action(\'after_setup_theme\', \'blogrock_setup\');
如果……我写得很无聊。。endif块。我知道我可以创建新类来避免这种情况。但我可以这样做吗?
if (!function_exists(\'theme_add_next_page_button\')) {
function theme_add_next_page_button(){
// function blocks
}
add_filter( \'mce_buttons\', \'theme_add_next_page_button\', 1, 2 );
}
我可以用这种方法消除函数冲突吗?如果还有其他方法,那是什么?我后来的方式会对主题表现产生负面影响吗?
谢谢