我想更改主题文件夹子目录中的php文件。该特定文件的路径为:
/includes/sf-content-display/sf-post-formats.php
我复制了子主题子目录中的文件并进行了更改。
如果我读了一些文章,似乎必须在文件函数中钩住一个自制函数。php在子主题中。
我做了以下工作:
function require_once_child() {
require_once(\'includes/sf-content-display/sf-post-formats.php\');
}
function require_once_child() {
remove_action( \'init\', \'require_once\' );
add_action( \'init\', \'require_once_child\' );
}
add_action( \'init\', \'require_once_child\' );
结果是错误:
致命错误:无法在/www/htdocs/keltenwo/wp/content/themes/flexform child/functions.php:3)中重新声明require\\u once\\u child()。php第9行
有什么建议吗?