VOOZH about

URL: https://wordpress.org/plugins/force-featured-image/

⇱ Force Featured Image – WordPress plugin | WordPress.org


Skip to content

Plugin Directory

Force Featured Image

Description

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

Screenshots

Installation

  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' );
    

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Force Featured Image” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Force Featured Image” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

0.2.0

  • Add the ability to force a featured image with dimensions

0.1.0

First Release

Meta

Ratings

No reviews have been submitted yet.

Support

Got something to say? Need help?

View support forum