'; } } add_action( 'wp_head', 'business_stack_pingback_header' ); if ( ! function_exists( 'business_stack_pagination' ) ) : function business_stack_pagination( $paged = '', $max_page = '' ) { $big = 999999999; // need an unlikely integer if( ! $paged ) $paged = get_query_var('paged'); if( ! $max_page ) $max_page = $wp_query->max_num_pages; echo wp_kses(paginate_links( array( 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link( $big ))), 'format' => '?paged=%#%', 'current' => max( 1, $paged ), 'total' => $max_page, 'mid_size' => 1, 'prev_text' => __('Previous', 'business-stack'), 'next_text' => __('Next', 'business-stack'), 'type' => 'list' ) )); } endif;