我有这个效果: 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代码?
答案 0 :(得分:1)