我正在尝试使用WordPress分页。但是,当我点击第一页时,它总是在页面上重定向它自己,但在这里它重定向页码
function pagination_bar( $custom_query ) {
$total_pages = $custom_query->max_num_pages;
$current_page = isset( $_GET['page_num'] ) ? abs( (int) $_GET['page_num'] ) : 1;
if ( $total_pages > 1 ) {
echo '<strong>Page ' . $current_page . ' of ' . $total_pages . '</strong> ';
echo paginate_links( array(
'base' => add_query_arg( 'page_num', '%#%' ),
'format' => '?page_num=%#%',
'prev_text' => false,
'next_text' => false,
'current' => $current_page,
'total' => $total_pages,
) );
}}
我在页面后传递了自定义的page_num参数。
答案 0 :(得分:0)
试试这个,
add_filter( 'get_pagenum_link', 'wpse_78546_pagenum_link' );
function wpse_78546_pagenum_link( $link )
{
return preg_replace( '~/page/(\d+)/?~', '?page_num=\1', $link );
}
或者您也可以使用此插件。 Custom Pagination Permalinks
希望这会对你有所帮助。
了解更多信息,