Skip to content

Instantly share code, notes, and snippets.

@rodica-andronache
Last active December 17, 2015 21:49
Show Gist options
  • Save rodica-andronache/5677454 to your computer and use it in GitHub Desktop.
Save rodica-andronache/5677454 to your computer and use it in GitHub Desktop.
WORDPRESS - Navigare pagina cu posturi
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'paged' => $page,
...
);
query_posts( $args );
if (have_posts()) : while (have_posts()) : the_post();
...
afisare posturi
...
<?php endwhile; ?>
<div class="pagination">
<div class="next"><?php previous_posts_link( __( 'Prev', 'cwp' ) ); ?></div>
<div class="prev"><?php next_posts_link( __( 'Next', 'cwp' ) ); ?></div>
</div><!-- /pagination-->
Obs: ca sa setez cate posturi sa fie afisate pe pagina, merg in wp-admin in Settings -> Reading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment