isotropic-2022
Share
Blog
Search
Menu

How to Get and Display The Featured Image in WordPress (Devs Guide)

By James LePage
|
Last updated on March 17th, 2022
|

Featured images are the first impression that visitors will get one visiting a page or post on WordPress. They've been a pillar of WordPress since the beginning, and are typically used at the top of blog posts, pages, and as social share OG images.

In this developers guide we're going to go over the methods that you can use to get and display a featured image in WordPress. We will include some example PHP code snippets that you can implement in your custom plugins, teams, or page builders that support PHP.

Display The Featured Image In WP

Displaying the featured image of a WordPress post is easily done with PHP by using the helper function: get_the_post_thumbnail(). This will take three arguments, the idea of the image, the size of the image (pulling from registered media sizes in WordPress or an array of height and width integers), and any additional attributes that you want to assign.

Each argument is optional, and placing the naked function within a template for a single post will return on display the featured image in WordPress.

<?php echo get_the_post_thumbnail( $post = null, 'thumbnail', array( 'class' => 'alignleft' ) );

Return The Featured Image URL

If you're looking to get the URL of a featured image in WordPress, and not immediately output an image tag, this is the way to do that.

<?php $isofeaturedimage = get_the_post_thumbnail_url(); ?> // We can then use the URL like so: <style> .hero { background-image:url('<?php echo $isofeaturedimage; ?>'); } </style>

Once you have the URL, you can insert it into your own image tag, utilize as a CSS background, or do anything else with it. The same arguments apply, you can specify a specific post ID, and set the size. As this is only returning the featured image URL as a string, you cannot assign attributes.

Another thing to note is that if you're building a custom theme, featured images may not be enabled by default. You'll be able to easily figure this out by going to the Gutenberg editor. If the featured image field displays, you're good to go. If it doesn't, you'll need to enable it.

To enable this, include the following code in your Functions.PHP file.

<?php //Enable theme support for featured images add_theme_support('post-thumbnails');

This is typically only the case if you're building custom, because virtually every WordPress theme already has enabled this option.


We hope that this reference helped you get and display the featured image of a WordPress post or page for your custom team, PHP template, or plugin. If you have any additional questions, feel free to leave them in the comments section below.

The Isotropic Codex is a collection of code snippets and education for WordPress, web and WooCommerce developers.
Subscribe & Share
If you liked this content, subscribe for our monthly roundup of WordPress news, website inspiration, exclusive deals and interesting articles.
Unsubscribe at any time. We do not spam and will never sell or share your email.
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Article By
James LePage
Contributors/Editors
notloggedin
James LePage is the founder of Isotropic, a WordPress education company and digital agency. He is also the founder of CodeWP.ai, a venture backed startup bringing AI to WordPress creators.
We're looking for new authors. Explore Isotropic Jobs.
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram