事实上,是的:只要使用get_next_posts_link()
, 使用相同的参数。
这个next_posts_lin()
函数只回显get_next_posts_link()
.
EDIT
呃,没关系。我误读了函数名。
你可以使用get_next_post()
, 返回post对象;然后可以从返回的ID对象参数中获取永久链接:
$nextpost = `get_next_post( $args )`;
$nextpostid = $nextpost->ID;
$nextpostlink = get_permalink( $nextpostid );