Created
October 25, 2012 07:26
-
-
Save fatihtoprak/3951155 to your computer and use it in GitHub Desktop.
wp#7 cached queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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