Wordpress - How to get page title with the page 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