return src(['app/scss/style.scss'])
.pipe(scss({outputStyle:'compressed'}))
.pipe(concat('style.min.css'))
<?php
$data = [];
foreach ($script as $script_gallery_photos){
require __DIR__ . '/settings.php'; // странновато делать require внутри цикла. Это точно правильно?
$data[] = [
'src' => $site_img.'/stamp/'.$script_gallery_photos['file_url'],
'w' => $script_gallery_photos['width'],
'h' => $script_gallery_photos['height'],
'title' => $title_heard, // кажется, тут опечатка в имени переменной
];
}
echo json_encode($data);
$sum_population = get_field('city-population');
$sum_population += (int)$sum_population;
$sum_population += (int)get_field('city-population');
if ( !function_exists('makeStr') ){...}
$makeStr = function(...){...};
в задании всегда с понедельника
<?php
for ($day = 0; $day < $days; $day++) {
// внутри цикла добавили единицу, чтобы считало, как нужно
$day++;
if ($day < 10) {
$str = $str . "0";
}
$str = $str . "$day ";
if (($day % 7) == 0) {
$str = $str . "<br>";
}
// вернули обратно
$day--;
}