我真的需要帮助。我具有Wordpress的分页功能
<?php
global $wp_query;
$big = 999999999; // need an unlikely integer
echo paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages
) );
?>
我需要它与AJAX一起使用,但是我不知道该怎么做。 有人能帮我吗 谢谢!