WordPress
- 7 ответов
- 0 вопросов
2
Вклад в тег
<?php
$args = array(
'post_type' => 'custom_post_type', //тут слаг типа записи
'posts_per_page' => -1,
);
$query = new WP_Query($args);
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
//шаблон вывода здесь
}
}
wp_reset_postdata();
wp_reset_query();
?>
while( have_posts() ): the_post();
$post_type = get_the_category(); //тут будет масив категорий вашого поста
get_template_part( 'template-parts/content', $post_type[0] ); //мы возмем только первою категорию
endwhile;