mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-06-05 15:08:20 +09:00
Update readme, version
This commit is contained in:
@@ -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.
|
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?
|
### What is term metadata and why does it matter to me?
|
||||||
|
|
||||||
@@ -243,6 +249,9 @@ Similar hooks:
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 3.0.1
|
||||||
|
* fixed: check for default featured image
|
||||||
|
|
||||||
### 3.0.0
|
### 3.0.0
|
||||||
* added: preferred image size (set to backstretch or large for the entire site)
|
* added: preferred image size (set to backstretch or large for the entire site)
|
||||||
* added: setting to prefer fallback/large images per content type
|
* added: setting to prefer fallback/large images per content type
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
* Plugin Name: Display Featured Image for Genesis
|
* Plugin Name: Display Featured Image for Genesis
|
||||||
* Plugin URI: https://github.com/robincornett/display-featured-image-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.
|
* 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: Robin Cornett
|
||||||
* Author URI: https://robincornett.com
|
* Author URI: https://robincornett.com
|
||||||
* Text Domain: display-featured-image-genesis
|
* Text Domain: display-featured-image-genesis
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ class Display_Featured_Image_Genesis_Common {
|
|||||||
* @var string
|
* @var string
|
||||||
* @since 1.4.3
|
* @since 1.4.3
|
||||||
*/
|
*/
|
||||||
public $version = '3.0.0';
|
public $version = '3.0.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* set and retrieve variables for the featured image.
|
* set and retrieve variables for the featured image.
|
||||||
|
|||||||
+13
-2
@@ -5,7 +5,7 @@ Donate link: https://robincornett.com/donate/
|
|||||||
Tags: backstretch, featured image, featured images, genesis, studiopress, post thumbnails, featured image rss, rss
|
Tags: backstretch, featured image, featured images, genesis, studiopress, post thumbnails, featured image rss, rss
|
||||||
Requires at least: 4.4
|
Requires at least: 4.4
|
||||||
Tested up to: 4.9
|
Tested up to: 4.9
|
||||||
Stable tag: 3.0.0
|
Stable tag: 3.0.1
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
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.
|
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? =
|
= 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)
|
*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.
|
4. Quickly see the featured image assigned to each post or term.
|
||||||
|
|
||||||
== Upgrade Notice ==
|
== 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 ==
|
== Changelog ==
|
||||||
|
|
||||||
|
= 3.0.1 =
|
||||||
|
* fixed: check for default featured image
|
||||||
|
|
||||||
= 3.0.0 =
|
= 3.0.0 =
|
||||||
* added: preferred image size (set to backstretch or large for the entire site)
|
* added: preferred image size (set to backstretch or large for the entire site)
|
||||||
* added: setting to prefer fallback/large images per content type
|
* added: setting to prefer fallback/large images per content type
|
||||||
|
|||||||
Reference in New Issue
Block a user