For wordpress categories, tags & archive pages, you can limit what you see on a paginated archive. Want to show header images, a category/term description and/or other specific elements only on the first page of an archive? Simply add the following code snippet to your wordpress template file:
1 2 3 |
if ( !get_query_var( 'paged' ) ) { echo term_description(); } |