我有一个wordpress网站,我知道要在wordpress页面上运行脚本,你需要在functions.php文件中排队脚本。我不知道怎么做这个过程?
我的Javascript叫做boosting.js 有人可以给我一个如何做到这一点的示例代码吗? 非常感谢你! (我对这一切都有点新鲜)
答案 0 :(得分:0)
您需要将此添加到functions.php。
$resp = $httpClient->request('GET', $url, ['query' => 'county=Sonoma']);
$resp = $httpClient->request('GET', $url, ['query' => ['county' => 'Sonoma']]);
$resp = $httpClient->request('GET', $url.'?county=Sonoma');
- 是您要为脚本提供的名称
script-name
- 是脚本所在位置的路径。如果您正在使用子主题,请将其更改为get_template_directory_uri() . '/js/boosting.js'
get_stylesheet_directory_uri() . '/js/boosting.js'
- 这是依赖关系。如果您的脚本需要jQuery才能使用array()
array('jquery')
- 脚本的版本。用于缓存
1.0.0
- 表示脚本将加载到页脚中,如果您需要在标题中使用true
false
您可以在此处阅读更多内容https://developer.wordpress.org/reference/functions/wp_enqueue_script/