user3479267
user3479267

Reputation: 232

Make something appear only on first page in Wordpress

How can I make a banner only appear on the index page of my wordpress theme but when the click to the second or any other page from the pagination of recent posts I do not want this to appear. Any suggestions?

Thanks

Upvotes: 1

Views: 1190

Answers (2)

Kausha Mehta
Kausha Mehta

Reputation: 2928

You can use below condition...

if(is_home() || is_front_page()) {
    // Write your code which you want to display on home page only
}

Upvotes: 1

Marcos Rodrigues
Marcos Rodrigues

Reputation: 712

You can use the conditional is_paged()

if( !is_paged() ) {
    // Show what you wanna show
}

It's only going to show on the first page, on page 2, 3, 4... it's not going to show.

Upvotes: 3

Related Questions