Skip to content

Instantly share code, notes, and snippets.

@Lysindr
Last active September 20, 2016 14:04
Show Gist options
  • Save Lysindr/dcfd56f0eab0e62c291c362694210634 to your computer and use it in GitHub Desktop.
Save Lysindr/dcfd56f0eab0e62c291c362694210634 to your computer and use it in GitHub Desktop.
Post slider
<div class="slider-wrapper">
<!-- Выводим посты из категории Technology в слайдер -->
<?php
$slide = array('category_name'=>'Business', 'posts_per_page'=>-1);
query_posts($slide);
while ( have_posts() ) : the_post();
?>
<div class="slide">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<div class="description"><?php the_content(); ?></div>
</div>
<?php endwhile; wp_reset_query(); ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment