Changeset 2233237
- Timestamp:
- 01/25/2020 03:20:47 PM (6 years ago)
- Location:
- minimum-featured-image-size/trunk
- Files:
-
- 2 edited
-
mfis.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
minimum-featured-image-size/trunk/mfis.php
r2071781 r2233237 3 3 Plugin Name: Minimum Featured Image Size 4 4 Description: Set the minimum size required for featured images used in standard and custom posts. 5 Version: 2.0. 15 Version: 2.0.2 6 6 Author: Martin Stewart 7 7 Author URI: https://corgmo.github.io/ … … 369 369 $image_height = $image_data[2]; 370 370 371 if ($post_type === 'post' ) :371 if ($post_type === 'post' || $post_type === 'page') : 372 372 373 373 $min_width = get_option('mfis_min_width'); … … 421 421 $mfis_default_error_message = 'Publishing disabled! The Featured Image you\'ve chosen is not large enough, it must be at least [width] x [height]'; 422 422 423 if ($post_type === 'post' ) :423 if ($post_type === 'post' || $post_type === 'page') : 424 424 425 425 $min_width = get_option('mfis_min_width'); -
minimum-featured-image-size/trunk/readme.txt
r2229549 r2233237 51 51 = 2.0.1 = 52 52 * Bug fix 53 54 = 2.0.2 = 55 * Add support for pages
Note: See TracChangeset
for help on using the changeset viewer.