Or this
<?php if ( $paged < 2 ) : ?>
text for first page
<?php else : ?>
<p>Text for subsequent pages of Category.
Can be left out.</p>
<?php endif; ?>
I figured something from this page probably has my answer, but I was unable to integrate it in my coding correctly I think..
http://codex.ww.wp.xz.cn/Conditional_Tags
<?php
$paged = $wp_query->get( ‘paged’ );
if ( ! $paged || $paged < 2 )
{
// This is not a paginated page (or it’s simply the first page of a paginated page/post)
}
else
{
// This is a paginated page.
}
?>