check if there is more then one page
/**
* If more than one page exists, return TRUE.
*/
function show_posts_nav() {
return ($wp_query->max_num_pages > 1);
}
-------------------
<?php if (show_posts_nav()) : ?>
// echo valami
<?php endif; ?>