On archive pages, I want to echo some text above the_loop - but only on the first page. Specifically, I'm using the category description.
How can I do this please?
On archive pages, I want to echo some text above the_loop - but only on the first page. Specifically, I'm using the category description.
How can I do this please?
Test on the value get_query_var('paged') returns:
<?php if( 1 >= get_query_var('paged') ) : ?>
Display only for first page of paginated queries
<?php endif; ?>
This topic has been closed to new replies.