'.'Read More'.''; } add_filter('excerpt_more', 'asakumi_excerpt_more'); function asakumi_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'asakumi_excerpt_length', 999); // Page Navigation function asakumi_pagenav() { global $wp_query, $wp_rewrite; $pages = ''; $max = $wp_query->max_num_pages; if(!$current = get_query_var('paged')) $current = 1; $args['base'] = str_replace(999999999, '%#%', get_pagenum_link(999999999)); $args['total'] = $max; $args['current'] = $current; $total = 1; $args['prev_text'] = 'Back'; $args['next_text'] = 'Next'; if ($max > 1) echo '
'; if ($total == 1 && $max > 1) $pages = '

Page '.$current.'of'.$max.'

'; echo $pages . paginate_links($args); if ($max > 1) echo '
';
}