引导样式后加载父主题样式

时间:2015-02-17 18:43:24

标签: php wordpress wordpress-theming

我已经为我的父主题创建了一个子主题,并且遇到了一个问题。我使用子主题functions.php文件来调用父主题.css。这个问题是在我的子主题上只在bootstrap.css之前调用了父style.css。我已经尝试使用$ dependencies参数,但它仍然无法正常工作。正在寻找一个简单正确的解决方案。

wp_enqueue_style('bootstrap-style', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css');
wp_enqueue_style('alphamedia-style', get_stylesheet_uri(), 'bootstrap-style');

这是我在我的父function.php文件中使用的代码,但它仍然无法正常工作。

我确信这是一件我很容易忽视的事情。谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

你的正确轨道,但wp_enqueue_style();函数需要一个数组作为$ dependencies传递。试试这个:

wp_enqueue_style('alphamedia-style', get_stylesheet_uri(), array('bootstrap-style'));