-
Notifications
You must be signed in to change notification settings - Fork 0
/
include-posts.php
32 lines (31 loc) · 999 Bytes
/
include-posts.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<div class="container">
<div class="row">
<?php
$pager = null;
$paged = get_query_var('paged') ? get_query_var('paged') : 1;
$args = array(
'post_status' => array('publish'),
'post_type' => 'topics',
'numberposts' => -1,
'paged' => $paged,
'posts_per_page' => get_option('posts_per_page'),
);
$the_query = new WP_Query($args);
if( $the_query->have_posts() ): while( $the_query->have_posts() ): $the_query->the_post();
include('variables.php');
include('include-post.php');
endwhile; endif;
$pager = paginate_links( array(
// 'base' => '/xxxx/%_%', // specify post_type, page for this post
'base' => '/topics/%_%',
'current' => max( 1, get_query_var('paged') ),
'total' => $the_query->max_num_pages,
'prev_text' => 'Previous',
'next_text' => 'Next'
) );
wp_reset_query();
wp_reset_postdata();
include('include-pager.php');
?>
</div>
</div>