diff --git a/README.md b/README.md index 00d8d57..fbd09bf 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,13 @@ Yes. As of version 3.0.0, shortcodes for each widget have been added to the plug The parameters/attributes for these mirror the widget options, so you can explore the code (or inspect the widget form) to find the shortcode attributes. -Alternatively, the much easier method entails visiting the settings page (under Appearance) and enabling the shortcode buttons for the post editor. With the shortcode buttons enabled, you can use the familiar widget form to build the shortcode and add it anywhere you like. +Alternatively, the much easier method entails visiting the settings page (under Appearance) and enabling the shortcode buttons for the post editor. With the shortcode buttons enabled, you can use the familiar widget form to build the shortcode and add it anywhere you like. + +### What happened to my default/post type featured image? + +If these images were saved to your database prior to version 2.2.0 of this plugin and you've never updated the plugin settings since then, these images may have effectively disappeared in version 3.0.0. To fix this, visit the plugin settings page, reselect your default/post type image(s), and save. + +Prior to version 2.2.0 of the plugin, these images were saved to the database as URL strings, rather than as ID numbers, which was hugely inefficient. This was changed in version 2.2.0, with backwards compatible helper functions to ease the transition, but the helper functions are no longer used as of version 3.0.0. ### What is term metadata and why does it matter to me? @@ -243,6 +249,9 @@ Similar hooks: ## Changelog +### 3.0.1 +* fixed: check for default featured image + ### 3.0.0 * added: preferred image size (set to backstretch or large for the entire site) * added: setting to prefer fallback/large images per content type diff --git a/display-featured-image-genesis.php b/display-featured-image-genesis.php index 296a676..3984c22 100644 --- a/display-featured-image-genesis.php +++ b/display-featured-image-genesis.php @@ -12,7 +12,7 @@ * Plugin Name: Display Featured Image for Genesis * Plugin URI: https://github.com/robincornett/display-featured-image-genesis/ * Description: This plugin works within the Genesis Framework, to display featured images in beautiful and dynamic ways. - * Version: 3.0.0 + * Version: 3.0.1 * Author: Robin Cornett * Author URI: https://robincornett.com * Text Domain: display-featured-image-genesis diff --git a/includes/class-displayfeaturedimagegenesis-common.php b/includes/class-displayfeaturedimagegenesis-common.php index 89421c4..66122a4 100644 --- a/includes/class-displayfeaturedimagegenesis-common.php +++ b/includes/class-displayfeaturedimagegenesis-common.php @@ -18,7 +18,7 @@ class Display_Featured_Image_Genesis_Common { * @var string * @since 1.4.3 */ - public $version = '3.0.0'; + public $version = '3.0.1'; /** * set and retrieve variables for the featured image. diff --git a/readme.txt b/readme.txt index 3e46fd6..25b8558 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Donate link: https://robincornett.com/donate/ Tags: backstretch, featured image, featured images, genesis, studiopress, post thumbnails, featured image rss, rss Requires at least: 4.4 Tested up to: 4.9 -Stable tag: 3.0.0 +Stable tag: 3.0.1 License: GPL-2.0+ License URI: http://www.gnu.org/licenses/gpl-2.0.txt @@ -77,6 +77,12 @@ The parameters/attributes for these mirror the widget options, so you can explor Alternatively, the much easier method entails visiting the settings page (under Appearance) and enabling the shortcode buttons for the post editor. With the shortcode buttons enabled, you can use the familiar widget form to build the shortcode and add it anywhere you like. += What happened to my default/post type featured image? = + +If these images were saved to your database prior to version 2.2.0 of this plugin and you've never updated the plugin settings since then, these images may have effectively disappeared in version 3.0.0. To fix this, visit the plugin settings page, reselect your default/post type image(s), and save. + +Prior to version 2.2.0 of the plugin, these images were saved to the database as URL strings, rather than as ID numbers, which was hugely inefficient. This was changed in version 2.2.0, with backwards compatible helper functions to ease the transition, but the helper functions are no longer used as of version 3.0.0. + = What is term metadata and why does it matter to me? = *Update for version 2.5:* Genesis 2.3 changed how term archive headlines/descriptions are pulled from the database. As of version 2.5, __Display Featured Image for Genesis__ uses the new, better method to retrieve the Genesis term metadata (for archive headlines and intro text). Please make sure that your plugin is up to date so that you do not get unexpected behavior. (see [StudioPress](http://www.studiopress.com/important-announcement-for-genesis-plugin-developers/) for more information) @@ -201,10 +207,15 @@ Similar hooks: 4. Quickly see the featured image assigned to each post or term. == Upgrade Notice == -3.0.0: potential breaking changes. new minimum WP version supported is 4.4! Also, widgets have been updated, shortcodes introduced, and new and post meta for more image control. +3.0.1: fixed default image not being included in image selection + +3.0.0: potential breaking changes. new minimum WP version supported is 4.4! Also, widgets have been updated, shortcodes introduced, and new settings/post meta for more image control. == Changelog == += 3.0.1 = +* fixed: check for default featured image + = 3.0.0 = * added: preferred image size (set to backstretch or large for the entire site) * added: setting to prefer fallback/large images per content type