wp_enqueue_style()
и wp_enqueue_script()
будете передавать их версию. Тогда браузер сам скачает новую версию файла, если она измениласьget_sites()
и собираете из него select if ( $query->have_posts() ) {
$i = 1;
while ( $query->have_posts() ) {
$query->the_post();
if ( $i == 1 ) {
get_template_part( 'templates/template-one' ); // первый
} elseif( $i == 2 ) {
get_template_part( 'templates/template-two' ); // второй
} else {
get_template_part( 'templates/template-common' ); // остальные
}
$i++;
}
} else {
// Постов не найдено
}
update_option()
$city_data = array(
'iso-area' => 'RU-MOS',
'title' => 'Москва',
'gde' => 'в Москве',
'kuda' => 'в Москву',
'otkuda' => 'из Москвы',
'chej' => 'Московский',
'chego' => 'Москвы',
'chemu' => 'Москве',
'o-chem' => 'о Москве',
'english' => 'Moscow',
'population' => '12 655 050',
'region' => 'central',
);
update_option( '_city_data', $city_data, 'yes' );
$site_data = get_option( '_site_data' );
vardump( $site_data['title'] );
$args = array(
'taxonomy' => 'category',
'hide_empty' => true, // не пустые
'exclude' => [1], // исключаем Без рубрики
);
$terms = get_terms( $args );
if ( $terms ) {
foreach( $terms as $term ) {
$args = array(
'posts_per_page' => 3, // по три поста
'post_type' => 'post', // тип записи "посты"
'post_status' => 'publish', // опубликованные посты
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => $term->term_id
)
)
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
echo '<h2>' . $term->name . '</h2>';
while ( $query->have_posts() ) {
$query->the_post();
echo '<li>' . get_the_title() . '</li>';
}
} else {
// Постов не найдено
}
}
}
register_sidebar( array( 'name' => 'Сайдбар каталога', 'id' => 'catalog-sidebar', 'description' => 'Сайдбар для каталога', 'before_widget' => '<div class="catalog-sidebar-section %2$s" id="%1$s">', 'after_widget' => '</div>', 'before_title' => '<div class="catalog-sidebar-header">', 'after_title' => '</div>', ) );