How to identify if your in the first page of WordPress pagination?

Here is the simple function you can use to check the first page of pagination:
if ( !is_paged() ) {
// first page of pagination
}

More Articles & Posts