Вопрос

My page ID is: 30601.

I want to get the page's title with ID.

Это было полезно?

Решение

Try with this:

<?php echo get_the_title( $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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с wordpress.stackexchange
scroll top