对于wordpress开发者来说the_title再熟悉不过,这是wordpress主题开发中最常用的函数之一,标题函数,但是很多开发者并没有意识到,还存有另外一个同样属性的标题定义函数the_title_attribute(),那the_title_attribute()函数怎样应用呢?
1 |
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">继续阅读 <?php the_title(); ?></a> |
通过上面的案例展示,提醒大家一下在html标签属性里一定要使用 the_title_attribute() 函数而不是 the_title() 函数!