How to determine if I’m on the first page of pagination?

How do I determine if I’m on the very first page of pagination? I’m using WP_Pagenavi. I want to run a function only on the first page of the pagination. I checked the query_var ‘paged’, it’s set to 0 on this page, and then 2, 3 and so on in the later pages (1 is missing!)… Anyone knows a clean solution?

Thanks.

3

// get current page we are on. If not set we can assume we are on page 1.
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
// are we on page one?
if(1 == $paged) {
    //true
}

Leave a Comment