$statuscount=0;
foreach ($answer as $statusq){
if($statusq['status'] == 1){
$statuscount++;
}
}
echo $statuscount;
<?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.
*/
add_action('wp_enqueue_scripts', 'my_enqueue_styles');
function my_enqueue_styles() {
wp_register_style('my-style', get_stylesheet_directory_uri() . '/my-style.css');
wp_enqueue_style('my-style');
}
wp_enqueue_style( 'carousel', get_stylesheet_directory_uri() . '/assets/carousel.css');
?function champfood_enqueue_styles() {
wp_enqueue_style( 'bootstrap', get_stylesheet_directory_uri() . '/assets/bootstrap/bootstrap.css');
//добавь еще парочку стилей и скриптов любых. создай просто несколько пустых файлов разных и подключи
}
add_action('wp_enqueue_script', 'champfood_enqueue_styles', 20);
add_action('wp_enqueue_script', 'champfood_enqueue_styles');
, что бы он выполнился ПОСЛЕ функций родительской темы add_action('wp_enqueue_script', 'champfood_enqueue_styles', 50);
. В общем можно еще так попробовать, это примеры с моих живых сайтов бутстрап подключаю из дочерней темы
Если не знаете ответ на вопрос,