MayerAnnamaria
6/4/2017 - 9:54 AM

check if there is more then one page

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; ?>