Skip to content

Instantly share code, notes, and snippets.

@w-perspective
Forked from agragregra/WordPress Category Home
Last active January 8, 2019 14:37
Show Gist options
  • Select an option

  • Save w-perspective/5f38624763e50025c576995cece10b80 to your computer and use it in GitHub Desktop.

Select an option

Save w-perspective/5f38624763e50025c576995cece10b80 to your computer and use it in GitHub Desktop.
WordPress Category Home
<?php
if ( have_posts() ) : // если имеются записи в блоге.
query_posts('cat=3'); // указываем ID рубрик, которые необходимо вывести.
while (have_posts()) : the_post(); // запускаем цикл обхода материалов блога
?>
<?php the_post_thumbnail(array(100, 100)); ?>
<? endwhile; // завершаем цикл.
endif;
/* Сбрасываем настройки цикла. Если ниже по коду будет идти еще один цикл, чтобы не было сбоя. */
wp_reset_query();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment