-1

我正在使用 wordpress。我创建了 blogs.here 我正在使用显示上一个和下一个链接

<div id="bottom_prev">
<?php previous_posts_link('Previous') ?>
</div>
<div id="bottom_next">
<?php next_posts_link('Next') ?>
</div>

但我不想要上一个,我只需要下一个。我喜欢链接“下一个”,这将导致上一个和下一个博客。这意味着下一个按钮需要以循环方式工作

4

2 回答 2

1

I think this should work for you -

<?php 
if( get_next_posts_link() ) 
{ 
next_posts_link('next'); 
} 
else 
{ 
echo '<a href="' . home_url( '/' ) . '" title="home again">back to beginning</a>'; } 
?>
于 2012-06-19T07:15:55.193 回答
0

你需要设置条件

<?php 
if( get_next_posts_link() ) 
{ 
next_posts_link('next'); 
} 
else 
{ 
echo '<a href="' . home_url( '/' ) . '" title="home again">back to beginning</a>'; } 
?>
于 2012-06-19T10:19:04.553 回答