---
title: "The get_the_post_thumbnail() WordPress function"
description: "The get_the_post_thumbnail() WordPress function will allow you to get the featured image and display it using your theme or plugin. In this article, we will teach you how to use the..."
url: https://www.inmotionhosting.com/support/edu/wordpress/get-the-post-thumbnail-wordpress-function/
date: 2014-07-01
modified: 2021-05-27
author: "Jeff Matson"
categories: ["WordPress Hosting", "WordPress Tutorials"]
type: post
lang: en
---

# The get_the_post_thumbnail() WordPress function

The *get_the_post_thumbnail()* WordPress function will allow you to get the featured image and display it using your theme or plugin. In this article, we will teach you how to use the *get_the_post_thumbnail()* function to display featured images anywhere you want to.

If you would like more information on creating WordPress plugins, see our tutorial series on [creating your first WordPress plugin](https://www.inmotionhosting.com/support/edu/wordpress/plugins/create-a-wordpress-plugin/).

**Note:** To use the *get_the_post_thumbnail() function, you will need to enable support for it within your theme.*

To enable support for the *get_the_post_thumbnail()* function, include the following in your theme’s *functions.php* file:

add_theme_support( ‘post-thumbnails’ );

## Basic usage

<?php echo get_the_post_thumbnail( $post_id, $size, $attr ); ?>

In the above code, we are simply displaying the featured image of a post based on the parameters we have defined. Below, you will see the various parameters that can be defined within the *get_the_post_thumbnail()* function.

### Parameters

**$post_id**: This is an optional parameter in which you can define the post ID of the post that you will be obtaining the featured image from. If this is not defined, it will display the featured image from the current post that you are viewing.

**$size**: This is an optional parameter that can be used to determine the size that the featured image is displayed. You may define either a string or an array with the dimensions.

**Pre-defined sizes**:

- thumbnail
- medium
- large
- full

**Custom sizes**:

To define a custom size, simply define it within an array, for example:

get_the_post_thumbnail($post_id, array(100,100), $attr );

As you can see from the above code, the image size is 100×100.

**$attr**: This is an optional parameter in which you may use an array to define additional attributes such as the class, alt text, title, etc. This would look something like the following:

$attr = array(

‘src’ => $src,

‘class’ => “attachment-$size”,

‘alt’ => trim(strip_tags( $attachment->post_excerpt )),

‘title’ => trim(strip_tags( $attachment->post_title )),

);

In the above example, we are storing the array containing the image location, class, alt text, and title within a variable which is later called within the *get_the_post_thumbnail()* function.

## References

For more information on the *get_the_post_thumbnail()* function, take a look at the [*get_the_post_thumbnail()* WordPress codex page](https://codex.wordpress.org/Function_Reference/get_the_post_thumbnail).
