На сайте https://opendag.ru при открытии мобильной версии главное меню сайта уходит в бургер.
.primary-navigation-wrap
имеет стандартную видимость, а вот элемент горизонтального меню nav.site-navigation
- скрыт, и наоборот в десктопной версии..site-navigation {
display:none;
margin-top: 10px;
padding: 0
}
.site-navigation {
/* display:none; */
margin-top: 10px;
padding: 0
}
.menu-toggle {
display: block
}
.menu-toggle {
/* display: block; */
}
main-style.css?ver=6.1.1
на main-style.css?ver=6.1.2
:function theme_enqueue_styles() {
wp_enqueue_style('custom-style', get_template_directory_uri() . '/assets/dist/css/main-style.css', array(), '6.1.2');
}
add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
add_filter( 'the_content', 'wpse_ad_content' );
function wpse_ad_content( $content ) {
if( !is_single() )
return $content;
// Массив с номерами абзацев, после которых нужно вставить рекламу
$paragraphsAfter = array(3, 6, 9);
// Массив с кодами рекламы для каждого абзаца
$ads = array(
'<div>Код рекламы для абзаца 3</div>',
'<div>Код рекламы для абзаца 6</div>',
'<div>Код рекламы для абзаца 9</div>'
);
$content = explode ( "</p>", $content );
$new_content = '';
$count = count($content);
for ( $i = 0; $i < $count; $i ++ ) {
$new_content .= $content[$i] . "</p>";
// Проверяем, нужно ли вставлять рекламу после текущего абзаца
if (in_array($i+1, $paragraphsAfter)) {
$adIndex = array_search($i+1, $paragraphsAfter);
if ($adIndex !== false && isset($ads[$adIndex])) {
$new_content .= $ads[$adIndex];
}
}
}
return $new_content;
}
cityWeather['weather']['desc']
+ '<br>' + cityWeather['weather']['desc']
cityWeather['weather']['icon']
выведет Вам изображение. console.log(cityWeather)
и посмотреть, что лежит в переменной, и распечатать то, что Вам нужно. Ну или как выше написали, почитать документацию ) function get_category_post_count() {
$string = '';
if ( is_category() && isset( get_queried_object()->count ) ) {
$string = get_queried_object()->count;
}
return $string;
}
// Define the action for register yoast_variable replacments.
function register_custom_yoast_variables() {
wpseo_register_var_replacement( '%%PostCount%%', 'get_category_post_count', 'advanced', __( 'Some instead title text', 'wpgen' ) );
}
// Add action.
add_action( 'wpseo_register_extra_replacements', 'register_custom_yoast_variables' );