Force Featured Image Icon

Force Featured Image

By Jonathan Bardo

Active Installs

10+

Last Updated

February 25, 2015

First Released

November 3, 2013

Download History (Last one month)


Development of this plugin is done on GitHub. Pull requests welcome. Please see issues reported there before going to the plugin forum.

  1. Upload force-featured-image to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. This plugin lets you specify which post-type requires to force a featured image to. It will also let you specify minimum dimensions for the image.
    Let’s say, for example, you want to force a user to set an image on the default post type with the following dimensions (400px * 400px). Put this code in the function.php of your theme :

    function theme_force_featured_image( $options ){
        $options['post'] = array(
            'width'  => 400,
            'height' => 400,
        );
    
        return $options;
    }
    add_filter( 'force_featured_image_post_type', 'theme_force_featured_image' );
    

No FAQ provided.

Changelog

0.2.0

  • Add the ability to force a featured image with dimensions

0.1.0

First Release

No previous versions available.

Plugin Info

  • Version: 0.2.0
  • Last Updated: February 25, 2015
  • Active Installs: 10+
  • WordPress Version: 3.5 or higher
  • Tested up to: 3.7.41
  • PHP Version: or higher
  • Tags:    
    admin featured featured-image image tinymce

Ratings


0.0 out of 5 stars. (0 reviews)

See all reviews
Scroll to Top