D
by navneetkrkashyap 0 (0 reviews)

Defaultify Featured Image

Set a default featured image for posts, pages, and custom post types with an option to enable or disable automatic application.

Defaultify Featured Image ranks #64,496 among WordPress.org plugins with 0+ active installations, and was last updated Aug 2, 2025. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 6.8.10 (Current: 7.1.2)
v1.9.1 Current Version v1.9.1
Updated 1 year ago Last Update on 02 Aug, 2025
Refreshed 7 hours ago Last Refreshed on
Downloads -8% this week No update in over a year
View on WordPress.org
Rank
#64,496
-461 this week
Active Installs
0+
-100%
KW Avg Position
N/A
No change
Downloads
2.8K
+9 today
Support Resolved
0%
No change
Rating
0%
Review 0 out of 5
0 (0 reviews)

Next Milestone 10

Total Progress 0%
0+ 10+
44,756
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

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
Upgrade to Pro
Need 10 more installs to reach 10+

Rank Changes

48,710 54,153 59,596 65,038 70,481 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
44,419 51,075 57,730 64,385 71,041 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #64,496
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 20 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 20 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

0.0
0 reviews
Overall 0%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Track This Plugin

Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.

Start Tracking Free

Plugin Details

Version
1.9.1
Last Updated
Aug 02, 2025
Requires WP
6.2+
Tested Up To
6.8.10
PHP Version
7.4 or higher

Support & Rating

Rating
☆ ☆ ☆ ☆ ☆ 0
Reviews
0
Support Threads
0
Resolved
0%

Keywords

Upgrade to Pro

Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.

Upgrade Now

Frequently Asked Questions

Common questions about Defaultify Featured Image

For plugin support, feature requests, or bug reports, please contact us at navneetkrkashyap@gmail.com. We typically respond within 24-48 hours during business days. You can also: * Search existing support topics in the WordPress.org support forum * Report bugs or suggest features via email
* Your WordPress version * Your theme name and version * A detailed description of the issue * Steps to reproduce the problem (if applicable)
This plugin works out of the box for most cases, but not always. If it doesn't work you can try the following things: Make sure the "Automatically apply default image" checkbox is enabled Switch themes. Some themes may handle featured images in non-standard ways Ensure you're using the Core WordPress functions to get the image Check if normal featured images work on your site The image might be hidden via CSS. Default images have an extra default-featured-img class added to them
Yes, you can use the following code snippet: `php add_filter( 'wpdfi_thumbnail_id', 'wpdfi_posttype_book', 10, 2 ); function wpdfi_posttype_book( $wpdfi_id, $post_id ) { $post = get_post( $post_id ); if ( 'book' === $post->post_type ) { return 31; // the image id for the book post type } return $wpdfi_id; // the original featured image id } `
Yes, here's how you can set different images based on categories: `php add_filter( 'wpdfi_thumbnail_id', 'wpdfi_category', 10, 2 ); function wpdfi_category( $wpdfi_id, $post_id ) { // Set a different image for posts that have the 'cats' category if ( has_category( 'cats', $post_id ) ) { return 7; // cats image id } // Set a different image for posts that have the 'dogs' category if ( has_category( 'dogs', $post_id ) ) { return 8; // dogs image id } return $wpdfi_id; // the original featured image id } `
`php add_filter( 'wpdfi_thumbnail_html', 'wpdfi_add_class', 10, 5 ); function wpdfi_add_class( $html, $post_id, $default_thumbnail_id, $size, $attr ) { // Add a class to the existing class list $attr['class'] .= ' my-custom-class'; return wp_get_attachment_image( $default_thumbnail_id, $size, false, $attr ); } `
Yes, here's how to exclude a specific post or page: `php add_filter( 'wpdfi_thumbnail_id', 'wpdfi_skip_page', 10, 2 ); function wpdfi_skip_page( $wpdfi_id, $post_id ) { if ( $post_id == 23 ) { return 0; // invalid id - no image will be applied } return $wpdfi_id; // the original featured image id } `
You can use the checkbox in the media settings page to enable or disable automatic application of the default image. When disabled, the default image will not be automatically applied to posts without a featured image.

Sign In / Register

You need to sign in or register to use this feature.