문제

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