• Hello! I’ve been looking around, but I couldn’t find anything solid on this, so I thought I’d ask. Is there any way to get only the URL from “next_posts_link” and “previous_posts_link” and not the whole <a href="http://localhost/?paged=5">Older</a>?

Viewing 1 replies (of 1 total)
  • You can use previous_posts( false ) and

    global $wp_query;
    $max_page = $wp_query->max_num_pages;
    next_posts( $max_page, false );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Possible to get only the URL from Next and Previous?’ is closed to new replies.