在the_title的参数中引入php代码

时间:2013-09-02 10:31:55

标签: php html wordpress arguments

我有这个效果: http://jsfiddle.net/CgF7a/ 我想为我的循环中的每个标题实现。 我的代码是:

<a class="roll-link" href="<?php the_permalink(); ?>"><?php the_title('<h7>', '<h7>'); ?></a>

我想介绍

<span data-title="<?php the_title(); ?>"></span>

而不是那些h7标签。 这不起作用:

<a class="roll-link" href="<?php the_permalink(); ?>"><?php the_title('<span data-title="<?php the_title(); ?>">', '</span>'); ?></a>

如何在the_title的参数中引入php代码?

1 个答案:

答案 0 :(得分:1)

你可以用这个: 请按照以下给出的屏幕截图进行显示

enter image description here