如何将PHP代码放入wordpress分页函数(previous_post_link,next_post_link等)?

时间:2011-05-21 11:39:25

标签: php wordpress pagination

我想把PHP代码放在我的分页中:

<?php next_post_link('%link','<div class="nav-next" title="<?php the_title();?>">Next Post</div>')?>

然而,结果是我有一个文字:“”而不是我悬停我的分页链接时的真实标题帖。

如何让我的php代码在wordpress参数中运行?

感谢。

2 个答案:

答案 0 :(得分:1)

不需要get_the_title。 next_post_link已通过%title

提供下一篇文章的标题
 next_post_link( '%link', '<div class="nav-next" title="%title">Next Post</div>' )

答案 1 :(得分:0)

使用字符串连接和get_the_title()返回值而不是回显它:

<?php 
  next_post_link(
           '%link',
           '<div class="nav-next" title="'.get_the_title().'">Next Post</div>'
 )?>