Changeset 2506265
- Timestamp:
- 03/30/2021 09:35:24 PM (5 years ago)
- Location:
- featured-image-admin-thumb-fiat/tags/1.6
- Files:
-
- 4 edited
- 1 copied
-
. (copied) (copied from featured-image-admin-thumb-fiat/trunk)
-
README.txt (modified) (2 diffs)
-
admin/class-featured-image-admin-thumb-admin.php (modified) (1 diff)
-
featured-image-admin-thumb.php (modified) (1 diff)
-
public/class-featured-image-admin-thumb.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
featured-image-admin-thumb-fiat/tags/1.6/README.txt
r2370423 r2506265 5 5 Requires at least: 3.5.1 6 6 Requires PHP: 7.0 7 Tested up to: 5. 58 Stable tag: 1. 5.37 Tested up to: 5.7 8 Stable tag: 1.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 65 65 66 66 == Changelog == 67 1.6 (2021-03-30) 68 * Addresses plugin conflict when using Gutenberg editor and [Conflict with ACF](https://wordpress.org/support/topic/conflict-with-acf-11//) 69 67 70 1.5.3 (2019-07-01) 68 71 * Addresses thumb column dislay issue with EDD Frontend Submissions [Plugin not working with EDD](https://wordpress.org/support/topic/plugin-not-working-with-edd/) -
featured-image-admin-thumb-fiat/tags/1.6/admin/class-featured-image-admin-thumb-admin.php
r2425873 r2506265 188 188 return; 189 189 }*/ 190 $screen = get_current_screen(); 190 $screen = get_current_screen(); 191 // Check if we are on an "all posts" screen type. 192 // If not then just return and do not load the JavaScript code 193 if ( ! $screen || ( 'edit-' . $screen->post_type !== $screen->id ) ) { 194 return; 195 } 191 196 $available_post_types = array_diff( get_post_types(), apply_filters( 'fiat/restrict_post_types', $this->default_excluded_post_types ) ); 192 197 // Add custom uploader css and js support for specific post types. -
featured-image-admin-thumb-fiat/tags/1.6/featured-image-admin-thumb.php
r2115825 r2506265 12 12 * Plugin URI: https://www.seanhayes.biz 13 13 * Description: Adds inline thumbnail image to admin columns for All Post/post types view (where supported). Click to easily set/change the featured image for that content. 14 * Version: 1. 5.314 * Version: 1.6 15 15 * Author: Sean Hayes 16 16 * Author URI: https://www.seanhayes.biz -
featured-image-admin-thumb-fiat/tags/1.6/public/class-featured-image-admin-thumb.php
r1761226 r2506265 30 30 * @var string 31 31 */ 32 const VERSION = '1. 4.3';32 const VERSION = '1.6'; 33 33 34 34 /**
Note: See TracChangeset
for help on using the changeset viewer.