<?php the_field('some_option', 7); ?>
loading="lazy"
на тегах img
. $classes[] = 'project-item col-lg-4 col-md-6 col-sm-12';
$project_taxes = get_the_terms( $post->ID, 'project_tax' );
if( is_array( $project_taxes ) ) {
foreach ( $project_taxes as $key => $project_tax ) {
$classes[] = $project_tax->slug;
}
}
echo '<div class="' . implode( ' ', $classes ) . '">';
echo '<h2>' . $post->post_title . '</h2>';
echo '</div>';
<form>
. Нужно его заменить на <div class="form">
чтобы сохранить внешний вид.<?php
//random integer between 0 and 10
$r = rand(0,10);
// array of 10 values
$values = [
3123424,
5645654,
4545666,
4534564,
6756765,
1223423,
2343245,
1335456,
9864563,
8764508
];
//random value from array
$variable = $values[$r];
echo 'random: ' . $r . ' variable: ' .$variable;
<div id="timerBlock">
<p>Ожидайте <span class="seconds">10</span> секунд</p>
</div>
var timerBlock = $('.seconds');
var num = 10; //количество секунд
var index = num;
var timerId = setInterval(function() {
timerBlock.html(--index);
}, 1000);
setTimeout(function() {
clearInterval(timerId);
$('#timerBlock').html('<button>hello!</button>')
}, num*1000);