样式在index.php上有效,但在single.php上消失

时间:2019-05-16 07:16:30

标签: php wordpress

我正在尝试在single.php中输出woocommerce产品。但是,由于某些原因我无法弄清楚样式中断了,尽管它在索引页面上工作得很好。

无需从数据库中循环任何内容,只需要get_header函数和get_footer函数

function styles_and_scripts(){
  wp_enqueue_style('style', get_stylesheet_uri());
  wp_enqueue_style('bulma', get_stylesheet_directory_uri().'/assets/css/bulma.css', null, false);
}
add_action('wp_enqueue_scripts', 'styles_and_scripts');

布尔玛导航栏删除其样式。我想这与链接有关。

1 个答案:

答案 0 :(得分:0)

检查bootstrap css是否未在single.php上加载。它与Bulma框架冲突。