Name | Update Time |
Netflix | October 18, 2024 4:49 pm |
Disney+ | October 18, 2024 11:03 am |
Max | October 18, 2024 11:34 am |
ChatGPT 4 | October 18, 2024 2:27 pm |
Spotify | October 18, 2024 11:49 am |
Prime Video | October 18, 2024 5:17 pm |
Codecademy | October 18, 2024 5:08 pm |
Grammarly | October 16, 2024 2:31 pm |
Canva Pro | October 18, 2024 5:12 pm |
Udemy Premium Cookies | September 2, 2024 2:53 pm |
get_the_post_thumbnail_url()
function. This function retrieves the URL of the featured image for a given post.Here’s how you can use it:
For a Specific Post ID
If you want to get the featured image URL for a specific post ID, you can pass the post ID as a parameter:
<?php
// Replace 123 with the ID of the post you want
$post_id = 123;
// Get the URL of the featured image
$featured_image_url = get_the_post_thumbnail_url($post_id, ‘full’);
// Output the URL
echo ‘Featured Image URL: ‘ . esc_url($featured_image_url);
?>
For the Current Post in a Loop
If you are within the loop or have a post object available and you want to get the featured image URL for the current post:
<?php
// Get the URL of the featured image for the current post
$featured_image_url = get_the_post_thumbnail_url(get_the_ID(), ‘full’);
// Output the URL
echo ‘Featured Image URL: ‘ . esc_url($featured_image_url);
?>
Parameters
get_the_post_thumbnail_url($post_id, $size)
:$post_id
(optional): The ID of the post. If not provided, it will use the current post in the loop.$size
(optional): The size of the image. The default is'post-thumbnail'
. Common sizes include'thumbnail'
,'medium'
,'large'
,'full'
, or a custom size registered in your theme.'full'
will give you the original image size.
Example Usage
Here is a full example in a WordPress theme template file to get and display the featured image URL:
<?php
// Check if the post has a featured image
if (has_post_thumbnail()) {
// Get the URL of the featured image
$featured_image_url = get_the_post_thumbnail_url(get_the_ID(), ‘full’);
// Display the image URL
echo ‘<img src=”‘%20.%20esc_url($featured_image_url)%20.%20′” alt=”‘ . get_the_title() . ‘”>’;
} else {
echo ‘No featured image available.’;
}
?>
This code snippet will display the featured image if it exists for the current post. If there is no featured image, it will show a message saying “No featured image available.”
By using these methods, you can effectively retrieve and display the featured image URL for posts in WordPress.
Search
Popular on Blogar
2024 Codecademy Premium Account Cookies
- October 18th, 2024
- 1467 Views
2024 Grammarly Premium Account Cookies
- October 16th, 2024
- 2531 Views
2024 ChatGPT 4 Premium Account Free Cookies
- October 18th, 2024
- 2695 Views
2024 Canva Pro Free Team Invite Link And Cookies
- October 18th, 2024
- 4682 Views
Perplexity AI Premium Cookies 2024
- April 17th, 2024
- 1634 Views
Email Marketing-What Is Email Marketing?
- October 24th, 2023
- 1078 Views
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1355 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1635 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1225 Views
How To Use Elementor in WordPress
- August 12th, 2024
- 97 Views
2024 HBOMax Premium Accounts
- October 18th, 2024
- 959 Views
WordPress-loading scripts and styles
- August 12th, 2024
- 92 Views
How to Fix Whatsapp not Sending Verification Code?
- September 12th, 2024
- 87 Views
Build Your Own Custom WordPress Theme
- August 14th, 2024
- 87 Views
How does a WordPress theme call a PHP file?
- August 12th, 2024
- 86 Views
Several solutions to the problem that uploaded images in wordpress cannot be displayed
- August 13th, 2024
- 86 Views
Recent Post
2024 Codecademy Premium Account Cookies
- October 18th, 2024
- 1467 Views
2024 Grammarly Premium Account Cookies
- October 16th, 2024
- 2531 Views
2024 ChatGPT 4 Premium Account Free Cookies
- October 18th, 2024
- 2695 Views
2024 Canva Pro Free Team Invite Link And Cookies
- October 18th, 2024
- 4682 Views
Perplexity AI Premium Cookies 2024
- April 17th, 2024
- 1634 Views
Email Marketing-What Is Email Marketing?
- October 24th, 2023
- 1078 Views
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1355 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1635 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1225 Views
WordPress next post / previous post on the same category
- November 11th, 2024
- 36 Views
- Howo Tractor Truck
- Howo Tipper/Dump Truck
- Howo Cargo Truck
- Howo Concrete Mixer Truck
- Howo Special Truck
- Howo Light Truck
- Shacman Tractor Truck
- Shacman Tipper/Dump Truck
- Shacman Cargo Truck
- Shacman Concrete Mixer Truck
- LGMG Mining Trucks
- XCMG Wheel Loader
- XCMG Excavator
- XCMG Crane
- XCMG Asphalt Pavers
- XCMG Road Roller
- Shantui Bulldozer
Copyright © 2024 BBBBF All Rights Reserved.