max_num_pages <= 1) return; $args = wp_parse_args( $args, [ 'mid_size' => 2, 'prev_next' => false, 'prev_text' => __('Older posts', 'cyywordpress'), 'next_text' => __('Newer posts', 'cyywordpress'), 'screen_reader_text' => __('Posts navigation', 'cyywordpress'), ]); $links = paginate_links($args); $next_link = get_previous_posts_link($args['next_text']); $prev_link = get_next_posts_link($args['prev_text']); $template = apply_filters( 'navigation_markup_template', ' ', $args, $class); echo sprintf($template, $class, $args['screen_reader_text'], $next_link, $links, $prev_link); } }