7 lines
441 B
PHP
7 lines
441 B
PHP
|
|
<?php if ( $wp_query->max_num_pages > 1 ) : ?><div class="pagination-wrapper"><?php the_posts_pagination( array(
|
||
|
|
'prev_text' => __( '< Обратно', 'quidus' ),
|
||
|
|
'next_text' => __( 'Далее >', 'quidus' ),
|
||
|
|
'end_size' => 2,
|
||
|
|
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'quidus' ) . ' </span>',
|
||
|
|
) );
|
||
|
|
?></div><?php endif;?>
|