paginate_links with select option

Here is the snippet for archive navigation with previous and next link along with the select dopwdown. Select will contain the list of all pages and page url as value of option. onChange is used to redirect page when select option is changed. You can use following code and modify as per your need. function … Read more

How to automatically load more data when users reaches at the bottom of the page of the wordpress site?

You can run an ajax request when user hits the bottom of the page if($(window).scrollTop() == $(document).height() – $(window).height()){ //your ajax request } the link to ajax rquest https://codex.wordpress.org/AJAX_in_Plugins for how to add data https://rudrastyh.com/wordpress/load-more-posts-ajax.html instead of loadmore button you can paste your ajax request in the if condition

Duplicating pagination on second page

I found this article and got it to work <div class=”posts”> <?php $paged = ( get_query_var( ‘paged’ ) ) ? get_query_var( ‘paged’ ) : 1; $the_query = new WP_Query( ‘cat=16&paged=’ . $paged ); ?> <?php if ( $the_query->have_posts() ) : ?> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <?php get_template_part( ‘partials/loop’, ‘archive’ ); ?> … Read more

Modifying previous_posts link to use AJAX

What am I doing wrong here? First, and foremost… I am editing the wp-includes/link-template.php file in WordPress Don’t hack Core files! Especially when there is a filter that should do what you need. add_filter( ‘previous_posts_link_attributes’, function ($clauses) { echo ‘previous_posts_link_attributes’; return ‘test=”attribute”‘; }, 1 ); You could insert your onclick with the filter. However, your … Read more