@podkudahka
крутой

Как в файле archive прописать цикл, чтобы он выводил только посты из текущей рубрики?

Как в файле archive (который отвечает за страницу рубрик) прописать цикл, чтобы он выводил только посты из текущей рубрики?
  • Вопрос задан
  • 32 просмотра
Пригласить эксперта
Ответы на вопрос 1
vova87
@vova87
Разработка сайтов на wordpress
<?php if ( have_posts() ) : ?>

			<header class="page-header">
				<?php
				the_archive_title( '<h1 class="page-title">', '</h1>' );
				the_archive_description( '<div class="archive-description">', '</div>' );
				?>
			</header><!-- .page-header -->

			<?php
			/* Start the Loop */
			while ( have_posts() ) :
				the_post();

				/*
				 * Include the Post-Type-specific template for the content.
				 * If you want to override this in a child theme, then include a file
				 * called content-___.php (where ___ is the Post Type name) and that will be used instead.
				 */
				get_template_part( 'template-parts/content', get_post_type() ); //подключаем шаблон вывода постов

			endwhile;

			the_posts_navigation();

		else :

			get_template_part( 'template-parts/content', 'none' );//подключаем шаблон если постов нету

		endif;
		?>
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы