BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
CTR
/
wp-content
/
themes
/
go
/
partials
📤 Upload
📝 New File
📁 New Folder
Close
Editing: pagination.php
<?php /** * A template partial to output pagination. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Go */ $posts_pagination = get_the_posts_pagination( array( 'mid_size' => 2, /** * Translators: * This text contains HTML to allow the text to be shorter on small screens. * The text inside the span with the class nav-short will be hidden on small screens. */ 'prev_text' => sprintf( '%s <span class="nav-prev-text">%s</span>', '←', __( 'Newer <span class="nav-short">Posts</span>', 'go' ) ), 'next_text' => sprintf( '<span class="nav-next-text">%s</span> %s', __( 'Older <span class="nav-short">Posts</span>', 'go' ), '→' ), ) ); // If we're only showing one of the next or previous links, add a class indicating so. if ( strpos( $posts_pagination, 'prev page-numbers' ) === false ) { $pagination_classes = ' only-next'; } elseif ( strpos( $posts_pagination, 'next page-numbers' ) === false ) { $pagination_classes = ' only-prev'; } else { $pagination_classes = ''; } if ( $posts_pagination ) { ?> <div class="pagination-wrapper m-auto max-w-wide px"> <?php echo $posts_pagination; /* @codingStandardsIgnoreLine -- already escaped during generation. */ ?> </div> <?php }
Save
Cancel