不清楚您需要在何处添加此附加代码。但我假设它是在“include”类型的文件中,您需要在生成的页面的部分中运行。
因此,要做到这一点,请使用add_action(\'wp_head\',\'your-function-name\')
加载外部函数文件:
add_action(\'wp_head\',\'include_my_include\');
function include_my_include() {
include get_template_directory() . \'your-function-file.php\';
return;
}
请参见此处:
https://codex.wordpress.org/Function_Reference/get_template_directory .
此代码将位于您的主题(希望是子主题)函数中。php文件。