我想在Wordpress组合页面的底部添加更多页码。目前只有2个数字;我想写8页。
网站正在维护中,您需要登录才能看到这些页面。如果您需要更多信息,请不要犹豫。
我添加了参数:
'mid_size' => 4,
'show_all' => true,
'end_size' => 1,
在所有$args
中,但没有效果:
$args = array(
'post_type' => 'portfolio',
'showposts' => $items_count,
'offset' => $custom_count,
'suppress_filters' => $suppress_filters,
'mid_size' => 4,
'show_all' => true,
'end_size' => 1,
);