Skip to content

Instantly share code, notes, and snippets.

@Scordavis
Created December 13, 2017 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Scordavis/cccc88afec4143761dca830cf0f82c22 to your computer and use it in GitHub Desktop.
Save Scordavis/cccc88afec4143761dca830cf0f82c22 to your computer and use it in GitHub Desktop.
WordPress КОРРЕКТНЫЙ вызов записей из категории
<?php
$id=4; // ID заданной рубрики
$n=5; // количество выводимых записей
$recent = new WP_Query("cat=$id&showposts=$n");
while($recent->have_posts()) : $recent->the_post();
?>
<div>
...
</div>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment