如何在wordpress中获取页面标题而不打印它

时间:2013-03-19 11:44:03

标签: wordpress

如何在不打印的情况下获取wordpress中的页面标题。 我试过wp_title但它会自动打印标题..

1 个答案:

答案 0 :(得分:2)

Google:wordpress获得帖子标题

第一个结果!

http://codex.wordpress.org/Function_Reference/get_the_title

<?php 
$post_title = get_the_title($ID); 
echo $post_title;
?>