HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/bueno/templates/post-nav.php
<?php
/**
 * The template part for displaying posts navigation.
 *
 * @package bueno
 */
?> 
<?php if(!is_singular()) { ?>

  <?php if ( function_exists('bueno_pagination') ) : ?>
  	<?php bueno_pagination($wp_query->max_num_pages); ?>
  <?php else : ?>
    <?php if ( $wp_query->max_num_pages > 1 ) : ?>
      <ul class="pager">
        <li class="previous">
          <?php next_posts_link( __('&laquo; Older Entries', 'bueno')) ?>
        </li><!--.older-->
        <li class="next">
          <?php previous_posts_link(__('Newer Entries &raquo;', 'bueno')) ?>
        </li><!--.newer-->
      </ul><!--.oldernewer-->
    <?php endif; ?>
  <?php endif; ?>
<?php } else { ?>
<div class="single-post-nav">
    <?php previous_post_link('%link', '<span>%title</span>'); ?>
    <?php next_post_link('%link', '<span>%title</span>'); ?>
</div>
<?php } ?>
<!-- Posts navigation -->