Generally we use the worpdress default pagination for our wordpress blog but here I find and write the code for Custom pagination for our blog page. First of all open the functions.php file of the current activated theme of the wordpress. Then add the below code into it as function.
[php]
request;
//intval — Get the integer value of a variable
/*http://php.net/manual/en/function.intval.php*/
$posts_per_page = intval(get_query_var(‘posts_per_page’));
//Retrieve variable in the WP_Query class.
/*http://codex.wordpress.org/Function_Reference/get_query_var*/
$paged = intval(get_query_var(‘paged’));
$numposts = $wp_query->found_posts;
$max_page = $wp_query->max_num_pages;
//empty — Determine whether a variable is empty
/*http://php.net/manual/en/function.empty.php*/
if(empty($paged) || $paged == 0) {
$paged = 1;
}
$pages_to_show = intval($custom_pagination[‘num_pages’]);
$larger_page_to_show = intval($custom_pagination[‘num_larger_page_numbers’]);
$larger_page_multiple = intval($custom_pagination[‘larger_page_numbers_multiple’]);
$pages_to_show_minus_1 = $pages_to_show – 1;
$half_page_start = floor($pages_to_show_minus_1/2);
//ceil — Round fractions up (http://us2.php.net/manual/en/function.ceil.php)
$half_page_end = ceil($pages_to_show_minus_1/2);
$start_page = $paged – $half_page_start;
if($start_page <= 0) {
$start_page = 1;
}
$end_page = $paged + $half_page_end;
if(($end_page - $start_page) != $pages_to_show_minus_1) {
$end_page = $start_page + $pages_to_show_minus_1;
}
if($end_page > $max_page) {
$start_page = $max_page – $pages_to_show_minus_1;
$end_page = $max_page;
}
if($start_page <= 0) {
$start_page = 1;
}
$larger_per_page = $larger_page_to_show*$larger_page_multiple;
//round_num() custom function - Rounds To The Nearest Value.
$larger_start_page_start = (round_num($start_page, 10) + $larger_page_multiple) - $larger_per_page;
$larger_start_page_end = round_num($start_page, 10) + $larger_page_multiple;
$larger_end_page_start = round_num($end_page, 10) + $larger_page_multiple;
$larger_end_page_end = round_num($end_page, 10) + ($larger_per_page);
if($larger_start_page_end - $larger_page_multiple == $start_page) {
$larger_start_page_start = $larger_start_page_start - $larger_page_multiple;
$larger_start_page_end = $larger_start_page_end - $larger_page_multiple;
}
if($larger_start_page_start <= 0) {
$larger_start_page_start = $larger_page_multiple;
}
if($larger_start_page_end > $max_page) {
$larger_start_page_end = $max_page;
}
if($larger_end_page_end > $max_page) {
$larger_end_page_end = $max_page;
}
if($max_page > 1 || intval($custom_pagination[‘always_show’]) == 1) {
/*http://php.net/manual/en/function.str-replace.php */
/*number_format_i18n(): Converts integer number to format based on locale (wp-includes/functions.php*/
$pages_text = str_replace(“%CURRENT_PAGE%”, number_format_i18n($paged), $custom_pagination[‘pages_text’]);
$pages_text = str_replace(“%TOTAL_PAGES%”, number_format_i18n($max_page), $pages_text);
echo $before.’
if(!empty($pages_text)) {
echo ‘‘.$pages_text.’‘;
}
//Displays a link to the previous post which exists in chronological order from the current post.
/*http://codex.wordpress.org/Function_Reference/previous_post_link*/
previous_posts_link($custom_pagination[‘prev_text’]);
if ($start_page >= 2 && $pages_to_show < $max_page) {
$first_page_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $custom_pagination['first_text']);
//esc_url(): Encodes < > & ” ‘ (less than, greater than, ampersand, double quote, single quote).
/*http://codex.wordpress.org/Data_Validation*/
//get_pagenum_link():(wp-includes/link-template.php)-Retrieve get links for page numbers.
echo ‘1‘;
if(!empty($custom_pagination[‘dotleft_text’])) {
echo ‘ ‘;
}
}
if($larger_page_to_show > 0 && $larger_start_page_start > 0 && $larger_start_page_end <= $max_page) {
for($i = $larger_start_page_start; $i < $larger_start_page_end; $i+=$larger_page_multiple) {
$page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $custom_pagination['page_text']);
echo '‘.$page_text.’‘;
}
}
for($i = $start_page; $i <= $end_page; $i++) {
if($i == $paged) {
$current_page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $custom_pagination['current_text']);
echo '‘.$current_page_text.’‘;
} else {
$page_text = str_replace(“%PAGE_NUMBER%”, number_format_i18n($i), $custom_pagination[‘page_text’]);
echo ‘‘.$page_text.’‘;
}
}
if ($end_page < $max_page) {
if(!empty($custom_pagination['dotright_text'])) {
echo '
}
$last_page_text = str_replace(“%TOTAL_PAGES%”, number_format_i18n($max_page), $custom_pagination[‘last_text’]);
echo ‘‘.$max_page.’‘;
}
next_posts_link($custom_pagination[‘next_text’], $max_page);
if($larger_page_to_show > 0 && $larger_end_page_start < $max_page) {
for($i = $larger_end_page_start; $i <= $larger_end_page_end; $i+=$larger_page_multiple) {
$page_text = str_replace("%PAGE_NUMBER%", number_format_i18n($i), $custom_pagination['page_text']);
echo '‘.$page_text.’‘;
}
}
echo ‘
‘.$after.”\n”;
}
}
}
?>
[/php]
After adding this above code add the created function into your blog page and then you are done.