使用the_title()
:
function add_post_content($content) {
if(!is_feed() && !is_home()) {
$content = the_title( \'<p>\', \'</p>\', FALSE ) . $content;
}
return $content;
}
add_filter(\'the_content\', \'add_post_content\');
前两个参数是
$vefore
和
$after
. 如果一篇文章没有标题,你就不会得到额外的标记。最后一个参数使函数返回字符串。否则它会立即打印出来。