我正在尝试将自己的主题添加到wp主题中。但我得到下一个错误:
http://something.comget_template_drectory_uri/css/non.css?ver=1.0.0
净:: ERR_NAME_NOT_RESOLVED
我的文件路径有问题吗?
接下来是functions.php的路径: /home/something/something.com/wp-content/themes/something/functions.php
和我想要入队的文件旁边: /home/something/something.com/wp-content/themes/something/css/nono.css
<?php
function nono_scrypt_enqueue (){
wp_enqueue_style('customstyle',get_template_drectory_uri.'/css/nono.css',array(),'1.0.0', 'all' );
wp_enqueue_script('customjs',get_template_drectory_uri.'/js/createO.js',array(),'1.0.0', 'all' );
}
add_action( 'wp_enqueue_scripts', 'nono_scrypt_enqueue' );
答案 0 :(得分:-1)
那里有一个拼写错误(d i 教区长)而且get_template_directory_uri()也是一个函数,所以只有你带括号时它才会起作用。
将get_template_drectory_uri
更改为get_template_directory_uri()
,它应该有效。