php - Make something appear only on first page in Wordpress -


how can make banner appear on index page of wordpress theme when click second or other page pagination of recent posts not want appear. suggestions?

thanks

you can use conditional is_paged()

if( !is_paged() ) {     // show wanna show } 

it's going show on first page, on page 2, 3, 4... it's not going show.


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -