* {
box-sizing: border-box;
background: #E5E5E5;
}
(всему ставить серый фон)$query = new WP_Query( [
'post_type' => 'news',
'posts_per_page' => 9,
'paged' => get_query_var( 'page' ),
'tax_query' => array(
array(
'taxonomy' => 'название_таксономии',
'field' => 'slug',
'terms' => array( 'значение_термина_1', 'значение_термина_2' ),
),
)
] );
<?php
// Запрашиваем продукты
$query = new WP_Query( [
'post_type' => 'news',
'posts_per_page' => 9,
'paged' => get_query_var( 'page' ),
] );
// Обрабатываем полученные в запросе продукты, если они есть
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();?>
<div class="news-item">
<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<p><?php $content = get_the_content(); echo mb_strimwidth($content, 0, 120, '.');?></p>
</div>
<?php }
wp_reset_postdata();
}
спасибо