我正在制作自定义wordpress主题,但出于某种原因,排队风格无效。
我添加了:
<?php get_header(); ?>
到index.php
我添加了
<?php wp_head();?>
里面 头标。
以下代码在我的functions.php中:
function pompier_scripts() {
wp_enqueue_style( 'main-style', get_stylesheet_uri() );
wp_enqueue_style( 'bootstrap-style', get_template_directory_uri() . '/css/bootstrap.min.css', array(), '1.0.0', false );
//wp_enqueue_script( 'bootstrap-script', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), '1.0.0', false );
}
add_action( 'wp_enqueue_scripts', 'pompier_scripts' );
我在这里缺少什么?
答案 0 :(得分:0)
我不知道这是否有帮助,但我刚创建了我的第一个子主题,并且因为它基于父主题,我不得不将这样的自定义样式表排入队列以使其工作:
wp_enqueue_style( 'my-style', get_stylesheet_uri() . '/style.css' );