Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created October 25, 2012 07:26
Show Gist options
  • Save fatihtoprak/3951155 to your computer and use it in GitHub Desktop.
Save fatihtoprak/3951155 to your computer and use it in GitHub Desktop.
wp#7 cached queries
<?php
# Cached Wordpress queries
# http://www.fatihtoprak.com
# SE Disq : http://wordpress.stackexchange.com/questions/70424/posts-per-page-doesnt-work/70425
$Poz = array(
'posts_per_page' => 5,
'orderby' => 'date',
'order' => 'DESC',
'no_found_rows' => true,
'update_post_term_cache' => false,
'update_post_meta_cache' => false,
);
query_posts( $Poz ); while ( have_posts() ) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?> yazısını oku."><?php the_title(); ?></a></li>
<?php endwhile; wp_reset_query(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment