使用29个主题,当我打开帖子时,Wordpress调用子主题目录中的CSS文件,最后出现404错误... 正确的文件位于父主题目录中,应从那里调用。
functions.php文件中的代码:
wp_enqueue_style( 'bootstrap', get_stylesheet_directory_uri() . '/bootstrap.css', array(), '4.3.1' );
Bootstrap会在子主题中正确加载,除非我打开帖子然后出现404错误
答案 0 :(得分:0)
请考虑使用
wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/bootstrap.css', array(), '4.3.1' );
并且,请确保在文件顶部的child-theme / style.css文件中有字符串
Template: twentynineteen