[wp-trac] [WordPress Trac] #52057: Small bug in pagination function paginate_links()

WordPress Trac noreply at wordpress.org
Sat Jan 9 16:04:11 UTC 2021


#52057: Small bug in pagination function paginate_links()
--------------------------+------------------------------
 Reporter:  kaderavek     |       Owner:  (none)
     Type:  defect (bug)  |      Status:  new
 Priority:  normal        |   Milestone:  Awaiting Review
Component:  Permalinks    |     Version:  2.1
 Severity:  trivial       |  Resolution:
 Keywords:                |     Focuses:
--------------------------+------------------------------

Comment (by kaderavek):

 @lukecarbis template is archive.php
 {{{#!php
 <?php
 /**
  * The template for displaying archive pages
  *
  * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  *
  * @package WordPress
  * @subpackage Twenty_Twenty_One
  * @since Twenty Twenty-One 1.0
  */

 get_header();


 $description = get_the_archive_description();
 ?>

 <?php if ( have_posts() ) : ?>

         <header class="page-header alignwide">
                 <?php the_archive_title( '<h1 class="page-title">',
 '</h1>' ); ?>
                 <?php if ( $description ) : ?>
                         <div class="archive-description"><?php echo
 wp_kses_post( wpautop( $description ) ); ?></div>
                 <?php endif; ?>
         </header><!-- .page-header -->

         <?php while ( have_posts() ) : ?>
                 <?php the_post(); ?>
                 <?php get_template_part( 'template-parts/content/content',
 get_theme_mod( 'display_excerpt_or_full_post', 'excerpt' ) ); ?>
         <?php endwhile; ?>

         <?php twenty_twenty_one_the_posts_navigation(); ?>

 <?php else : ?>
         <?php get_template_part( 'template-parts/content/content-none' );
 ?>
 <?php endif; ?>

 <?php get_footer(); ?>


 }}}

 in function twenty_twenty_one_the_posts_navigation(); which use:
 the_posts_pagination();
 which use: get_the_posts_pagination(); which use: paginate_links();

-- 
Ticket URL: <https://core.trac.wordpress.org/ticket/52057#comment:6>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list