我正在尝试在没有插件的情况下使JS和CSS异步(我知道这是可能的,不需要太多的编码)。
由于我不太懂php,我希望你能在这里帮我一点忙。
我找到了这段代码来处理这类事情,但我真的不知道如何使用它。
function add_async_attribute($tag, $handle) {
$scripts_to_async = array(\'my-js-handle\', \'another-handle\');
foreach($scripts_to_async as $async_script) {
if ($async_script !== $handle) return $tag;
return str_replace(\' src\', \' async="async" src\', $tag);
}
return $tag;
}
add_filter(\'script_loader_tag\', \'add_async_attribute\', 10, 2);
我应该准确地放置什么而不是my-js-handle
或another-handle
如果JQuery文件放在此处:wordpress/wp-includes/js/jquery/jquery.js?ver=1.11.3
?另外,如果我要放大数组,请这样说:
array(\'my-js-handle\', \'another-handle\', \'one-more\');
我是否需要改变一些东西,请这样说(在add_filter
): 10, 2);
?至于css异步化。。。仅仅扩大这个数组并添加我的css地址就足够了吗?