How to get page title with the page ID? olatechproJune 11, 20230 Views My page ID is: 30601. I want to get the page’s title with ID. Post Views: 0 Related postsGet rid of this Strict Standards warningWooCommerce: get_current_screen not working with multi languageCan’t login on WordPressForce HTTPS using .htaccess – stuck in redirect loopWordPress: Ajax not working to insert, query and result dataHow Can I pass an image file to wp_handle_upload?
<?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
Try with this:
get_the_title fetch the title of WordPress post based on particular Id. and get_the_ID() fetch id of that page/post