WordPress问题:
我在创建分页时遇到问题。这是我的分页代码:
protected function create_pagination_links( $max_num_pages, $page )
{
$page_num = '999999';
$this->pagination = paginate_links( array(
'base' => str_replace( $page_num, '%#%', esc_url( get_pagenum_link( $page_num ) ) ),
'total' => $max_num_pages,
'current' => $page,
'format' => '%#%',
'prev_text' => sprintf( '<i class="fal fa-angle-left"></i> %1$s', __( 'previous', 'text-domain' ) ),
'next_text' => sprintf( '%1$s <i class="fal fa-angle-right"></i>', __( 'next', 'text-domain' ) ),
) );
}
结果链接。 https://domainname.com/custom/posttype/page/2/。
问题1:
我希望结果链接像这样。 https://domainname.com/custom/posttype/2/。没有 page 。
您对分页有任何想法或经验吗?
谢谢。