我想把PHP代码放在我的分页中:
<?php next_post_link('%link','<div class="nav-next" title="<?php the_title();?>">Next Post</div>')?>
然而,结果是我有一个文字:“”而不是我悬停我的分页链接时的真实标题帖。
如何让我的php代码在wordpress参数中运行?
感谢。
答案 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>'
)?>