generate_pagination_mid_size

The generate_pagination_mid_size filter allows you to increase the number of page links shown in your post pagination.

Example

add_filter( 'generate_pagination_mid_size','tu_increase_pagination_numbers' );
function tu_increase_pagination_numbers() {
    return 3;
}

Usage

Please refer to the Using Filters article to learn how to use this filter.