<div class="map-conteiner">
<div class="map-item">
<div class="map-item">
<div class="map-item">
<div class="map-item">
<div class="map-item">
<div class="map-item">
</div>
.you-class::before {
content: '';
display: block;
position: absolute;
width: 15px;
height: 15px;
top: 0px;
left: 0px;
background-color: blue;
-webkit-mask-image: url('/image/map-item.svg');
mask-image: url('/image/map-item.svg');
transition: 0.3s;
}
.you-class:hover::before {
background-color: #E6372A;
transform: scale(1.1)
}
$(document).ready(function(){
$('#block_1').mouseover(function(e){
$('#block_2').show();
});
$('#block_1').mouseout(function(e){
$('#block_2').hide();
});
});
add_action('wpcf7_mail_sent', 'wpcf7mailsent_redirect');
function wpcf7mailsent_redirect() {
if ( 'wpcf7_mail_sent' == true ) {
$new_url = 'https://ya.ru';
header('Location: '.$new_url);
exit();
}
}
$images = array();
foreach ( get_field('gallery_game_img') as $image) {
$images[] = $image['url'];
}
'game_img_main' => get_field('game_img_main')
html = '';
for (i = 0; i < data['results'].length; i++) {
html_img = '';
if(data['results'][i]['gallery_game_img']) {
//html_img = JSON.parse(data['results'][i]['gallery_game_img']);
html_img = '["'+data['results'][i]['gallery_game_img'].join('","')+'"]';
console.log(html_img)
}
data-slides="'+html_img+'"
add_action('init', 'my_custom_init');
function my_custom_init(){
register_post_type('book', array(
'labels' => array(
'name' => 'Книги', // Основное название типа записи
'singular_name' => 'Книга', // отдельное название записи типа Book
'add_new' => 'Добавить новую',
'add_new_item' => 'Добавить новую книгу',
'edit_item' => 'Редактировать книгу',
'new_item' => 'Новая книга',
'view_item' => 'Посмотреть книгу',
'search_items' => 'Найти книгу',
'not_found' => 'Книг не найдено',
'not_found_in_trash' => 'В корзине книг не найдено',
'parent_item_colon' => '',
'menu_name' => 'Книги'
),
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array('title','editor','author','thumbnail','excerpt','comments')
) );
}
<script>
jQuery(".product_box").hover(
function () {
jQuery(".button",this).fadeTo("fast",1);
},
function () {
jQuery(".button",this).fadeOut(500);
}
);
</script>
// Мой первый фильтр
add_filter ('nav_menu_link_attributes', 'filter_nav_menu_link_attributes', 10,3);
function filter_nav_menu_link_attributes ( $atts, $item, $args) {
if ($args->menu === 'Main') {
$atts['class'] = 'header__nav-item';
if ( $item->current) {
$atts['class'] .= 'header__nav-item-active';
}
}
}