ページIDでページタイトルを取得するにはどうすればよいですか?
2 回答
- 投票
-
-
- 2020-02-22
<?php echo get_the_title( get_the_ID() ); ?>
get_the_titleは、特定のIDに基づいてWordPress投稿のタイトルを取得します.そしてget_the_ID()はそのページ/投稿のIDをフェッチします
<?php echo get_the_title( get_the_ID() ); ?>
get_the_title fetch the title of WordPress post based on particular Id. and get_the_ID() fetch id of that page/post
-
こんにちは、アヌラグ・ティワリ.WP StackExchangeに貢献していただきありがとうございます.あなたの答えをもう少し包括的にするための友好的な提案と同じように、私はあなたがいくつかの文脈や説明、そして/またはドキュメントの関数への参照を与えることをお勧めします.Hi, Anurag Tiwari. Thanks for contributing to WP Stack Exchange. Just as a friendly suggestion to make your answers a little bit more compreensive, I encourage you give some context or explanation and/or references to the function in documentation.
- 0
- 2020-02-22
- Celso Bessa
-
提案をありがとう.次回も同じことをしますThanks for the suggestion. Next Time I will do the same
- 0
- 2020-02-24
- Anurag Tiwari
私のページIDは次のとおりです:
30601
このIDのタイトルを取得するにはどうすればよいですか?
IDでページのタイトルを取得したい.