如何获得带有页面ID的页面标题?


12

我的页面ID是: 30601

如何获得此ID的标题?

我想获取具有ID的页面标题。

Answers:


31

试试这个:

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

1
<?php 
echo get_the_title( get_the_ID() );
?>

get_the_title根据特定的ID获取WordPress帖子的标题。和get_the_ID()获取该页面/帖子的ID


嗨,阿努拉格·蒂瓦里(Anurag Tiwari)。感谢您为WP Stack Exchange做出的贡献。正如一个使您的答案更全面的友好建议一样,我鼓励您对文档中的函数进行一些上下文说明或解释和/或引用。
Celso Bessa

谢谢你的建议。下次我会做同样的事情
Anurag Tiwari
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.