如何在wordpress中获取页面标题

时间:2014-12-26 06:39:13

标签: wordpress page-title

好吧,我试过了 <?php echo get_the_title('About Us');?>

但代码无效。我正在使用wordpress 4.1。这应该有效,但事实并非如此。 wordpress是否更新了这些功能?

5 个答案:

答案 0 :(得分:14)

试试这个,它可以帮到你

<?php single_post_title(); ?>

谢谢:)

答案 1 :(得分:4)

尝试这个,可能对你有所帮助

<?php echo get_the_title(); ?>

如果您想通过ID

获取页面或帖子标题
 <?php echo get_the_title(post->$ID); ?> 

由于

答案 2 :(得分:3)

您向get_title提供了错误的参数。请参阅codex

您应该使用ID来获取标题。

所以你的代码将是

 <?php echo get_the_title(13); //where 13 is the ID of the about us page ?>

注意:参数是可选的。

答案 3 :(得分:0)

你可以试试这个

 <?php echo get_page_by_title( 'About' ); ?>

Reference

答案 4 :(得分:-1)

<?php
  $page = get_page_by_title( 'About Us' );
 echo get_the_title($page->ID)
?>