Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | function spurs_load_more() { |
||
14 | global $wp_query; // you can remove this line if everything works for you |
||
15 | |||
16 | // don't display the button if there are not enough posts |
||
17 | if ( $wp_query->max_num_pages > 1 ) |
||
18 | echo '<div class="spurs_loadmore btn btn-primary btn-lg">More posts</div>'; // you can use <a> as well |
||
19 | } |
||
20 | } |
||
54 | add_action('wp_ajax_nopriv_loadmore', 'spurs_loadmore_ajax_handler'); // wp_ajax_nopriv_{action} |