Wordpress中的自定义帖子类型:是否可以将导航功能集成到元素的<a>
- 标记中?
让我们在 single-customposttype.php 文件中说我有一个彩色框。当您单击它时,必须显示自定义帖子类型的下一篇文章。
我试过这个,但它不起作用:
<a href="<?php $link_next = get_next_posts_link(); echo $link_next ?>"><div class="red_box"></div></a>
任何人都知道正确的代码吗?
答案 0 :(得分:0)
我找到了解决方案。一个可能的解决方案可能是这样的:
<?php $prev = get_permalink(get_adjacent_post(false,'',false));
if ($prev != get_permalink()) { ?><a href="<?php echo $prev; ?>"><div class="arrow_left"></div></a><?php } ?>
<?php $next = get_permalink(get_adjacent_post(false,'',true));
if ($next != get_permalink()) { ?><a href="<?php echo $next; ?>"><div class="arrow_right"></div></a><?php } ?>