Feed Post Thumbnail
Adds MRSS namespace to the feed and uses post-thumbnail as media element in the feed. Settings available under Settings -> Reading.
Next Milestone 3K
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 3.0.0
- Last Updated
- Nov 18, 2024
- Requires WP
- 6.0+
- Tested Up To
- 6.7
- PHP Version
- 7.4 or higher
- Author
- required
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about Feed Post Thumbnail
add_filter( 'wp_feed_post_thumbnail_image_size_full', function( $size ) {
return 'large'; // Return any registered image size.
}, 10, 1 );
// Filters the size on the media:thumbnail tag. Defaults to 'thumbnail'.
add_filter( 'wp_feed_post_thumbnail_image_size_thumbnail', function( $size ) {
return 'medium'; // Return any registered image size.
}, 10, 1 );
add_filter( 'wp_feed_post_thumbnail_image', function( $thumbnail ) {
return ''; // Return an empty string or another attachment post object.
}, 10, 1 );
// Filters the array of attachment post objects. Defaults to featured image post object if exists.
add_filter( 'wp_feed_post_thumbnail_images', function( $images ) {
$attachment_id = '123';
$images[] = get_post( $attachment_id ); // Additional attachment post object.
return images;
}, 10, 1 );
add_filter( 'wp_feed_post_thumbnail_title', function( $title ) {
return 'Override title'; // Return any plain text.
}, 10, 1 );
// Filters the text on the media:description tag. Defaults to attachment description.
add_filter( 'wp_feed_post_thumbnail_description', function( $description ) {
return 'Same description for all images'; // Return any plain string.
}, 10, 1 );
// Filters the name of the author on the media:copyright tag. Defaults to attachment author.
add_filter( 'wp_feed_post_thumbnail_author', function( $author_name ) {
return 'Matt'; // Return any plain string.
}, 10, 1 );