If you plan to get the title of a post or page using a post loop, it is suggested to use the_title() instead.
Code
get_the_title();
Output
The title of the current post or page
Code
get_the_title( 44 );
Output
The title of the post id:44.
Parameter | Details |
---|---|
$post | (int) (optional) Post ID or post object. Default is the the current post's id. |