wp在基础工具提示中发布标题

时间:2015-10-05 09:13:12

标签: wordpress tooltip zurb-foundation

我想在工具提示中显示下一个/上一个帖子链接标题,我尝试了几个选项,但它不会显示它。这个地方是"显示在这里的标题"。 代码:

<?php next_post_link('%link', '<span data-tooltip aria-haspopup="true" class="has-tip tip-bottom" title="SHOW POST TITLE HERE"><i class="fa fa-angle-left fa-2x"></i></span>
'); ?>
提前thnx

1 个答案:

答案 0 :(得分:0)

要显示标题使用%title,请参阅Documentation

<?php next_post_link( '%link', '<span data-tooltip aria-haspopup="true" class="has-tip tip-bottom" title="%title"><i class="fa fa-angle-left fa-2x"></i></span>' ); ?>