我想在特定页面上运行特定的js.即:wwww.custom.com/english/
我已经尝试了以下两个代码(header.PHP和functions.PHP),但它们都不起作用.
代码1:
<script>
if(location.pathname=="/english/")
script.src = /js/custom.js;
</script>
代码2:
function my_scripts() {
if( is_page( array( 'about-us', 'contact', 'management' ) ){
wp_enqueue_script( 'script-name', 'path/to/example.js', array(), '1.0.0', true );
}
}
add_action( 'wp_enqueue_scripts', 'my_scripts' );
标题一个根本没有显示,也没有错误.
functions.PHP是一个语法错误.
有什么建议么?
多谢
PS:我正在使用wordpress.
解决方法:
function my_scripts() {
if( is_page( array( 'about-us', 'contact', 'management' ) ) ){
wp_enqueue_script( 'script-name', 'path/to/example.js', array(), '1.0.0', true );
}
}
add_action( 'wp_enqueue_scripts', 'my_scripts' );
为了将来参考,在你的wp-config.php文件中你可以将debug设置为true,我相信这会把它拿起来.