Skip to content

Instantly share code, notes, and snippets.

View legoex's full-sized avatar
💭
Way to Senior

Oleg Korolenko legoex

💭
Way to Senior
  • Vinnitsa
View GitHub Profile
@legoex
legoex / query_posts.php
Last active April 3, 2017 20:54
WordPress / query_posts
<?php if(have_posts()) : query_posts('p = 1');
while(have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php the_thumbnail(array(100, 100)); ?>
<?php endwhile; endif; wp_reset_query(); ?>