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>', ) );
$args = array(
'post_type' => 'object',
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
$mask = array();
$mask['type'] = 'FeatureCollection';
while ( $query->have_posts() ) {
$query->the_post();
$geo = get_post_meta( get_the_ID(), '_geo', true );
$mask['features'][] = array(
'type' => 'Feature',
'id' => $key,
'geometry' => array (
'type' => 'Point',
'coordinates' => [(float) $geo['lat'], (float) $geo['lat']],
),
'properties' => array (
'balloonContentBody' => '<strong class="map-title"><a class="link" href="' . get_the_title() . '">' . get_the_title() . '</a></strong>',
'balloonContentFooter' => '<a class="hidden" href="#">Я был здесь!</a>',
'clusterCaption' => '<strong>' . get_the_title() . '</strong>',
'hintContent' => '<strong>' . get_the_title() . '</strong>'
)
);
}
}
json_encode( $mask )
в обработчик в js. В поле _geo должен лежать массив: широта и долготаwp_add_inline_script()
, это не супер подход, но, в моем случае было удобнее всегоwp_enqueue_script( 'ya-map-api' );
$ya_map_init .= "<script type='text/javascript'>
jQuery(function($){
ymaps.ready(init);
function init () {
var map = new ymaps.Map('ya-map', {
center: [" . $geo_center . "],
zoom: " . $geo_zoom . ",
controls: ['geolocationControl' ,'zoomControl'],
}, {
avoidFractionalZoom: false,
}),
objectManager = new ymaps.ObjectManager({
clusterize: false
});
objectManager.objects.options.set('preset', 'islands#nightCircleDotIcon');
map.geoObjects.add(objectManager);
var resortLabels = " . json_encode( $mask ) . ";
objectManager.add(resortLabels);
}
});
</script>";
wp_add_inline_script( 'ya-map-api', $ya_map_init );
<div id="map" class="map"></div>
add_action( 'wp_enqueue_scripts', 'ya_scripts' );
function ya_scripts() {
$ya_map_key = '96193550-a00q-czce-p3vb-uh52odq1qhil';
wp_register_script('ya-map-api', 'https://api-maps.yandex.ru/2.1/?lang=ru_RU&apikey=' . $ya_map_key . '', array('jquery'), null, true);
}
post_meta
. Разумнее всего сохранять в это поле строку или массив, но вы можете поэкспериментировать и с объектами$competition['Барселона'][] = [
'time' => '27:01',
'person' => 'Месси',
];
$competition['ПСЖ'][] = [
'time' => '32:16',
'person' => 'Мбаппе',
];
$competition['ПСЖ'][] = [
'time' => '70:44',
'person' => 'Кин',
];
update_post_meta( $post_id, '_competition', $competition );
get_post_meta()
$competition = get_post_meta( $post_id, '_competition', true );
pre_get_posts
. Для запросов админки это выглядит примерно так:add_action( 'pre_get_posts', 'admin_pre_get_posts', 1 );
function admin_pre_get_posts( $query ) {
if( is_admin() ) {
$query->set( 'posts_per_page', 200 );
}
}
save_post
и сделать сортировку по этому полю