由于不清楚您到底需要什么,因此很难为您提供最佳解决方案。
然而您应该能够在循环模板中使用get\\u next\\u posts\\u link()。或者获取\\u previous\\u posts\\u link(),如果需要的话。
如果返回null,则可以在模板中的任何位置回显链接。
if(!get_next_posts_link()) {
echo \'<a href="http://linktosomewhere.com">Continue to somewhere else</a>\';
}
但在自定义循环中不起作用。然后您必须引用max\\u num\\u页面。
if(!get_next_posts_link( \'whatever\', $your_query->max_num_pages )) { }