我正在使用 wordpress。我创建了 blogs.here 我正在使用显示上一个和下一个链接
<div id="bottom_prev">
<?php previous_posts_link('Previous') ?>
</div>
<div id="bottom_next">
<?php next_posts_link('Next') ?>
</div>
但我不想要上一个,我只需要下一个。我喜欢链接“下一个”,这将导致上一个和下一个博客。这意味着下一个按钮需要以循环方式工作
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>'; }
?>
你需要设置条件
<?php
if( get_next_posts_link() )
{
next_posts_link('next');
}
else
{
echo '<a href="' . home_url( '/' ) . '" title="home again">back to beginning</a>'; }
?>