Установил woocommerce на
сайт, кинул в папку themes их тему Storefront, скачал стартер дочерней темы, как они и рекомендуют,
отсюда, активировал её, в файле functions.php добавил скрипт(посмотрел его
здесь), чтобы подключить bootstrap
Вот так выглядит functions.php
<?php
/**
* Storefront automatically loads the core CSS even if using a child theme as it is more efficient
* than @importing it in the child theme style.css file.
*
* Uncomment the line below if you'd like to disable the Storefront Core CSS.
*
* If you don't plan to dequeue the Storefront Core CSS you can remove the subsequent line and as well
* as the sf_child_theme_dequeue_style() function declaration.
*/
//add_action( 'wp_enqueue_scripts', 'sf_child_theme_dequeue_style', 999 );
/**
* Dequeue the Storefront Parent theme core CSS
*/
function sf_child_theme_dequeue_style() {
wp_dequeue_style( 'storefront-style' );
wp_dequeue_style( 'storefront-woocommerce-style' );
}
/**
* Note: DO NOT! alter or remove the code above this text and only add your custom PHP functions below this text.
*/
function champfood_enqueue_styles() {
$parent_style = 'parent-style'; // storefront style
wp_enqueue_style($parent_style, get_template_directory_uri() . '/style.css');
wp_enqueue_style(
'child-style',
get_stylesheet_directory_uri() . '/style.css',
array($parent_style),
wp_get_theme()->get('Version')
);
wp_enqueue_style(
'bootstrap',
get_stylesheet_directory_uri() . '/assets/bootstrap/bootstrap.css');
}
add_action('wp_enqueue_script', 'champfood_enqueue_styles');
Однако bootstrap не вижу в head. По идее, должен был подключиться после
<link rel="stylesheet" id="storefront-child-style-css" href="http://champfood.mosco-web.ru/wp-content/themes/champfood/style.css?ver=4.8.2" type="text/css" media="all">
как у чувака в видео.
Помогите разобраться, наверняка вы уже это делали.
p.s. пока временно подключил по cdn, чтобы начать верстать