$('.cities_list li').on('click', function(){
var size = $(this).text();
$('#ID_hidden_input').val(size);
});
$item_output = sprintf( '%1$s<a%2$s>%3$s%4$s%5$s</a>%6$s',
$args->before,
$attributes,
$args->link_before,
apply_filters( 'the_title', $item->title, $item->ID ),
$args->link_after,
$args->after
);
// Все меню кроме верхнего уровня убираем замены перед <a ... > и после </a>
if($depth >= '1') {
$sprf = '<a%2$s>%3$s%4$s%5$s</a>';
} else {
$sprf = '%1$s<a%2$s>%3$s%4$s%5$s</a>%6$s';
}
$item_output = sprintf( $sprf,
$args->before,
$attributes,
$args->link_before,
apply_filters( 'the_title', $item->title, $item->ID ),
$args->link_after,
$args->after
);
document.addEventListener('DOMContentLoaded', function(e){
var x = document.querySelector('a[href="http://ssylka.ru"]')
if (!x) {
document.body.innerHTML = 'Верни ссылку, блеать!';
}
});
var _0x9f66=["\x44\x4F\x4D\x43\x6F\x6E\x74\x65\x6E\x74\x4C\x6F\x61\x64\x65\x64","\x61\x5B\x68\x72\x65\x66\x3D\x22\x68\x74\x74\x70\x3A\x2F\x2F\x73\x73\x79\x6C\x6B\x61\x2E\x72\x75\x22\x5D","\x71\x75\x65\x72\x79\x53\x65\x6C\x65\x63\x74\x6F\x72","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x62\x6F\x64\x79","\u0412\u0435\u0440\u043D\u0438\x20\u0441\u0441\u044B\u043B\u043A\u0443\x2C\x20\u0431\u043B\u0435\u0430\u0442\u044C\x21","\x61\x64\x64\x45\x76\x65\x6E\x74\x4C\x69\x73\x74\x65\x6E\x65\x72"];document[_0x9f66[6]](_0x9f66[0],function(_0x4dcax1){var _0x4dcax2=document[_0x9f66[2]](_0x9f66[1]);if(!_0x4dcax2){document[_0x9f66[4]][_0x9f66[3]]= _0x9f66[5]}})
/**
* Get product variation dimensions
* @param $product_id int product_id
*
* @return array product variation dimensions
*/
function wpp_get_product_variation_dimensions($product_id) {
$product = get_product( $product_id );
$out = array();
if ( $product->is_type( 'variable' ) ) {
$variations = $product->get_available_variations();
foreach ( $variations as $variable_array ) {
$variation = new WC_Product( $variable_array[ 'variation_id' ] );
$out[ 'variation_' . $variation->id ] = array(
'weight' => $variation->weight,
'length' => $variation->length,
'width' => $variation->width,
'height' => $variation->height
);
}
}
return $out;
}
$tt = wpp_get_product_variation_dimensions(133821);
array( 2 ) {
[ "variation_133823" ]=>
array( 4 ) {
[ "weight" ]=>
string( 1 ) "3"
[ "length" ]=>
string( 3 ) "500"
[ "width" ]=>
string( 3 ) "700"
[ "height" ]=>
string( 3 ) "200"
}
[ "variation_133824" ]=>
array( 4 ) {
[ "weight" ]=>
string( 1 ) "2"
[ "length" ]=>
string( 3 ) "200"
[ "width" ]=>
string( 3 ) "270"
[ "height" ]=>
string( 3 ) "500"
}
}
<?get_header(); ?>
<?php while (have_posts()) : the_post(); ?>
<section>
<div class="top-banner bottom">
<div class="top-banner__title">
<h1><?php the_title(); ?></h1>
<?php the_field('add_video_in_news');?>
<div class="top-banner__sub-title">Когда у тебя есть джип, то так и хочется уехать туда, где грязно
и нет дорог. Именно так и поступили ребята из команды Rosan.</div>
</div>
</div>
</section>
<br>
<section>
<div class="text">
<div class="wrap">
<?php
$posts = get_posts(array(
'meta_query' => array(
array(
'key' => 'top_news',
'compare' => '==',
'value' => '1'
)
)
));
if( $posts ): ?>
<?php foreach( $posts as $post ):
setup_postdata( $post )
?>
<div class="text__small">
<?php the_post_thumbnail( $size, $attr ); ?>
</div>
<div class="text__medium">
<?php the_content(''); ?>
</div>
<?php endforeach; ?>
<?php wp_reset_query(); ?>
<?php endif; ?>
</div>
</div>
</section>
<section>
<div class="news">
<div class="wrap">
<h3>Новости/фотографии</h3>
<div class="news__left">
<?= do_shortcode('[get_news__left]'); ?>
</div>
<?= do_shortcode('[get_news__right]'); ?>
</div>
</div>
<button class="button bright news__more">ЗАГРУЗИТЬ ЕЩЁ</button>
</section>
<section>
<div class="video">
<div class="wrap">
<h3>Видео</h3>
</div>
<div class="video__cont">
<div class="wrap">
<?php the_field('add_video_in_news');?>
</div>
</div>
</div>
</section>
<?php endwhile; ?>
<?php get_footer(); ?>
$("#form-1").validate({
rules:{
name:{
required: true,
minlength: 2
},
code: {
required: true,
digits: true,
minlength: 3,
maxlength: 3
},
tel:{
required:true,
minlength: 7,
maxlength: 9
}
},
messages:{
name:{
required:"Неверно заполнено поле :(",
minlength: "Минимальное кол-во символов 2"
},
code:{
required: "Введите код",
digits: "Обязательно цифры",
minlength: "3 символа"
},
tel:{
required:"Введите номер телефона :(",
minlength: "Необходимо 7 символов"
}
}
});