function xchina_pagination($query = null, $is_comments = false) { if ($is_comments) { // For comments pagination $total_pages = get_comment_pages_count(); $current_page = max(1, get_query_var('cpage') ? get_query_var('cpage') : 1); } else { // For posts pagination $query = $query ?: $GLOBALS['wp_query']; $total_pages = $query->max_num_pages; $current_page = max(1, get_query_var('paged') ? get_query_var('paged') : 1); } if ($total_pages <= 1) { return; } echo '