使用Boostrap加载错误的Wordpress自定义主题

时间:2018-07-16 23:53:39

标签: wordpress

我正在基于引导程序在Wordpress上构建自定义模板,但是我收到了一些错误,不确定为什么,这就是我如何在functions.php上添加

//Call bootstrap files on template

function lucastest_enqueue_styles() {

    wp_register_style('lucastest', get_template_directory_uri() . '/bootstrap/css/bootstrap.min.css' );

    wp_enqueue_style( 'lucastest', get_stylesheet_uri()); 

}

function lucastest_enqueue_scripts() {


    wp_enqueue_script('lucastest', get_template_directory_uri().'/bootstrap/js/bootstrap.min.js');

}

lucastest是主题名称,这是错误:

GET http://local.lucastest.com/wp-content/themes/lucastest/bootstrap/js/bootstrap.min.js?ver=4.9.7 404 (Not Found)
(index):35 GET http://local.lucastest.com/wp-content/themes/lucastest/bootstrap/css/bootstrap.min.css?ver=4.9.7 404 (Not Found)

有什么想法吗?我是在php 7.0上的Ubuntu上运行

0 个答案:

没有答案