• Resolved Rafał

    (@ayek)


    Hi!
    I’d like to hook some stuff on the first page only (front page).
    How could I take advantage of conditional statement for Estatik pagination?

    Eg.

    if ( is_front_page() && !is_paged() ) {
        $display = true;
    }

    Seems to not work for paginated properties neither on front page nor any listing.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Estatik

    (@estatik)

    Hi Rafal!

    Try this one:

    if ( is_front_page() && empty($_GET[‘paged-1’]) ) {

    Hopefully, it will work.

    • This reply was modified 5 years ago by Estatik.
    Thread Starter Rafał

    (@ayek)

    Thank you!!!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘is_paged() ?’ is closed to new replies.