'aria_label' =>
__( 'Comments'
),
'class' => 'comments-pagination',
) );
$args['echo'
] = false;
// Make sure we get a string back. Plain is the next best thing.
if ( isset( $args['type'
] ) && 'array' ===
$args['type'
] ) { $args['type'
] = 'plain';
} $links =
paginate_comments_links( $args );
if ( $links ) { $navigation =
_navigation_markup( $links,
$args['class'
],
$args['screen_reader_text'
],
$args['aria_label'
] );
} return $navigation;
}/**
* Displays a paginated navigation to next/previous set of comments, when applicable.
*
* @since 4.4.0
*
* @param array $args See get_the_comments_pagination() for available arguments. Default empty array.
*/