Reputation: 232
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
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
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