<body>
.<div>
. function wpdocs_theme_name_scripts() {
wp_enqueue_style( 'hover', get_template_directory_uri() . '/css/hover.css' );
//или если не хочется загружать файл к себе:
wp_enqueue_style( 'hover', '//cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.0/css/hover-min.css' );
}
add_action( 'wp_enqueue_scripts', 'wpdocs_theme_name_scripts' );
img {
max-width: 120%;
margin-left: -10%;
margin-right: -10%;
height: auto !important;
}
<img src="<?php echo get_template_directory_uri(); ?>/logog.png" alt="">
<div class="front-map-overlay" onclick="style.pointerEvents='none'" style="pointer-events: none;"></div>
.front-map-overlay {
position: relative;
height: 400px;
top: 400px;
margin-top: -400px;
z-index: 2;
}
<?php
echo wp_trim_words( get_the_content(), 40, '...' );
?>
<?php if ( has_nav_menu( 'primary' ) ) : ?>
<?php wp_nav_menu(array('theme_location' => 'primary', 'container_class' => 'menu')); ?>
<?php endif; ?>