我有这个效果: 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 代码?