If you are developing custom WordPress functionality one important element is a post or page’s title. Luckily WordPress has a built in function to retrieve the title of the current post using PHP. This is useful for displaying a post title in a custom loop or in other areas of your WordPress site’s theme.
In this article I’ll be going over how to use the get_the_title() function in WordPress.
How to Display the Page/Post Title in PHP
Now let’s dive in and use get_the_title() to display our page/post’s title in WordPress using PHP. This is useful if you’re creating a custom theme or custom code snippet. Best of all the function will output the title of any post type including pages and posts. If you add custom post types to your site it’ll also work for retrieving their title as well.
You can easily echo the get_the_title function and it’ll output the current global $post object’s title. This will work in most use cases and likely what you need.
<?php | |
// Display post title | |
echo get_the_title(); |
Alternatively you can set the post ID in the get_the_title function to get a specific post’s title. You can see in the examples below how I am getting a post/page’s title by ID. This works great too if you have a custom loop you’ve created and want to grab the title that way.
<?php | |
// Display post title using post ID | |
echo get_the_title( 5 ); | |
// Display post title and safely escape value | |
echo esc_html( get_the_title() ); | |
// Using the_title function to automatically echo the title, while you can append or prepend the title using the function as displayed below | |
the_title( 'Before:', ' - After' ) |
I’ve also included an example of the_title() function which outputs the title without using echo. the_title() function also allows you to include content before and after the title as seen in the example above. Typically I recommend using get_the_title() so you can modify the title string if needed.
If you use get_the_title() function on a password protected or private post the words “Protected” and “Private” will be inserted before the post title.
If you’re using the title as a title tag in an HTML tag you can also use the function the_title_attribute() which will echo a sanitized version of the title. This will prevent things like quotation marks from breaking your layout when using a title in an HTML attribute.
I hope this post cleared up how to get the page title in WordPress using PHP.
If you have any questions about WordPress development let me know in the comments below!
8 Responses
Hello, Thank you for these explanations.
How can we retrieve the title of a custom_post_type by its ID?
Have a nice day
Just using get_the_title and putting your ID into it like this get_the_title(5313) will grab the title of a custom post type by its ID.
Thank you for your quick reply.
Great it works, thank you very much.
Small question, how can I dynamically retrieve the title ID if I decide to delete it and recreate another one from my plugin?
Here is his code:
add_action(‘init’, function () {
register_post_type(‘titlefooter’, [
‘label’ => ‘Footer titles’,
‘public’ => true,
‘menu_position’ => 3,
‘menu_icon’ => ‘dashicons-ellipsis’,
‘supports’ => [‘title’],
‘show_in_rest’ => true,
‘has_archive’ => true,
]);
});
I believe if the slug is still the same for the post type you’re registering it should act the same. I’m not sure of the question I guess.
No, sorry, that doesn’t work…
I will search again on the web hoping to find a solution for my Wordpress theme.
If not, I’ll think of another way to do it.
Thank you again for your help.
If you provide more details I am always around to help, feel free to email also an**@sm*****.com
Can also do like this:
global $post;
$post_title = $post->post_title;