我正在尝试添加对Vary的支持:在我的主题函数中接受whithin的编码。php文件。
请不要建议我使用任何插件,因为这是我试图在我的主题中实现它的唯一原因。
使用insert\\U with\\U标记的想法来自此StackOverflow讨论:How to add .htaccess code through a function?
你能告诉我我做错了什么吗?
add_action(\'after_setup_theme\',\'add_htaccess\');
function add_htaccess($insertion)
{
$insertion = array(
\'# Enable Vary: Accept-Encoding Start\',
\'<IfModule mod_headers.c>\',
\'<FilesMatch "\\.(js|css|xml|gz)$">\',
\'Header append Vary: Accept-Encoding\',
\'</FilesMatch>\',
\'</IfModule>\',
);
$htaccess_file = ABSPATH.\'.htaccess\';
return insert_with_markers($htaccess_file, \'# Testing\', (array) $insertion);
}