Created
April 5, 2012 17:14
-
-
Save kalbers/2312586 to your computer and use it in GitHub Desktop.
This file contains 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 $args = array( 'posts_per_page' => '10', 'cat' => '-592, -614', 'post_status' => 'publish', 'paged=' . get_query_var( 'page' )); ?> | |
<?php query_posts($args) ?> | |
<?php while ( have_posts() ) : the_post(); ?> | |
<?php get_template_part( 'content-results'); ?> | |
<?php endwhile; ?> | |
<?php wp_reset_postdata(); ?> | |
<?php if(function_exists('wp_pagenavi')) { // if PageNavi is activated ?> | |
<?php wp_pagenavi(); // Use PageNavi ?> | |
<?php } else { // Otherwise, use traditional Navigation ?> | |
<div class="navigation"> | |
<div class="alignleft"><?php next_posts_link('«') ?></div> | |
<div class="alignright"><?php previous_posts_link('»') ?></div> | |
</div> | |
<?php } // End if-else statement ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment