Files
dis-2019/loadmore.php
2019-06-09 19:55:23 +02:00

7 lines
287 B
PHP

<?php
global $wp_query; // you can remove this line if everything works for you
// don't display the button if there are not enough posts
if ( $wp_query->max_num_pages > 1 )
echo '<div class="misha_loadmore"><a>Mutass többet</a></div>'; // you can use <a> as well
?>