我正在尝试修改css元标记,并使用CDN url和其他东西。
我尝试的(快速测试)是:
function change_stylesheet_loc($uri)
{
$uri = str_replace(\'example.com\', \'cdn.example.com\', $uri);
return $uri;
}
add_filter(\'stylesheet_uri\', \'change_stylesheet_loc\', 20000);
我也尝试过:
add_filter(\'the_content\', \'change_stylesheet_loc\', 20000);
我所做的一切都不起作用。如何修改css元标记数据?