hi,
i’ve build a custom homepage using WP_Query to show the latest 10 posts. All works.
after the 10 posts, i’ve this code:
<?php
previous_posts_link(‘<span class=”leggialtrosx”>« Articoli più recenti</span>’);
next_posts_link( ‘<span class=”leggialtrodx”>Precedenti »</span>’, $the_query->max_num_pages );
wp_reset_postdata();
?>
Of course, it works fine and shows me 2 arrow to go to the next or previous page.
The question is: How can i show the “load more” button which is already integrated in the theme under the function gillion_load_more_posts() ?
i know that customization is not part of this support forum but this function is already part of the theme. I don’t need help to code something new, i just need to know how to put the load more button in that place.
Thank you