updated readme for 1.4.0

This commit is contained in:
Robin Cornett
2014-11-05 16:04:43 -05:00
parent da8286fb9b
commit 618d2ec3e6
2 changed files with 52 additions and 20 deletions
+30 -12
View File
@@ -14,7 +14,21 @@ This plugin takes a different approach to how we use and display featured images
More words at [my site](http://robincornett.com/plugins/display-featured-image-genesis/).
*Note: although this plugin requires the [Genesis Framework by StudioPress](http://studiopress.com/) or child themes, it is not an official plugin for this framework and is neither endorsed nor supported by StudioPress.*
_Note: although this plugin requires the [Genesis Framework by StudioPress](http://studiopress.com/) or child themes, it is not an official plugin for this framework and is neither endorsed nor supported by StudioPress._
#### An Image for Every Page
__Display Featured Image for Genesis__ now allows you to select a default, or fallback, Featured Image, which will be used if a post/page does not have a Featured Image set, or if the post/page's Featured Image is too small (smaller than your medium image setting), and on archive and taxonomy pages. You may set the Default Featured Image under Appearance > Display Featured Image Settings.
#### Simple Styling
__Display Featured Image for Genesis__ has some styling built in but I have intentionally tried to keep it minimal. All styling is for the backstretch image options, as the large options seem pretty straightforward. Stying for titles are largely inherited from your theme--for example, the title will use the same size and font for your page titles, whether you are using a Featured Image or not. Some styles you can incorporate into your own theme:
* `.has-leader` applies to any page using a leader/backstretch image. Applies to the whole page.
* `.big-leader` the container which holds the leader/backstretch image and the post/page Title and excerpt or description.
* `.featured-image-overlay` style appended to the post/page title if Move Excerpts option _is not_ selected (default).
* `.excerpt` (for single posts/pages) and `.archive-description` (for archives) are styled as a unit. These are the containers for the post/page/archive/taxonomy title and description if the Move Excerpts option _is_ selected.
* `.featured` is appended to the large image output directly above the post/page content.
## Requirements
* WordPress 3.8, tested up to 4.0
@@ -100,7 +114,7 @@ Additionally/alternatively, you could set a max-height for the backstretch image
```css
.big-leader {
max-height: 700px !important;
max-height: 700px;
}
```
@@ -126,37 +140,41 @@ _Note:_ unless you check the option to __Move Excerpts/Archive Descriptions__, a
## Changelog
###1.3.0
### 1.4.0
* all settings updated for bloat and moved to a new submenu page under Appearance
* efficiency in descriptions, output, and variables
### 1.3.0
* optional taxonomy/author/CPT headline now shows over leader image
* optional taxonomy/author/CPT description and single post excerpt display optionally over leader image as well
###1.2.2
### 1.2.2
* default image validation
###1.2.1
### 1.2.1
* moved default image from Customizer to Media Settings page
* new filter for forcing default image for any post type
* common class
###1.2.0
### 1.2.0
* new feature: default featured image to display if no image is set
* better method naming/organization
###1.1.3
### 1.1.3
* output is now properly managed to show only on single posts/pages and home page, not archives
###1.1.2
### 1.1.2
* plugin properly deactivates if Genesis isn't running
###1.1.1
### 1.1.1
* corrected XHTML hooks
###1.1.0
### 1.1.0
* added a setting in the admin to optionally reduce the height of the backstretch image
* refactoring
###1.0.1
### 1.0.1
* added the filter for certain post types, and optional filter for other custom post types
###1.0.0
### 1.0.0
* Initial release on Github
+22 -8
View File
@@ -5,7 +5,7 @@ Donate link: https://robincornett.com/donate/
Tags: backstretch, featured image, featured images, genesis, studiopress, post thumbnails
Requires at least: 3.8
Tested up to: 4.0
Stable tag: 1.3.0
Stable tag: 1.4.0
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -22,7 +22,21 @@ This plugin takes a different approach to how we use and display featured images
More words at [my site](http://robincornett.com/plugins/display-featured-image-genesis/).
*Note: although this plugin requires the [Genesis Framework by StudioPress](http://studiopress.com/) or child themes, it is not an official plugin for this framework and is neither endorsed nor supported by StudioPress.*
_Note: although this plugin requires the [Genesis Framework by StudioPress](http://studiopress.com/) or child themes, it is not an official plugin for this framework and is neither endorsed nor supported by StudioPress._
= An Image for Every Page =
__Display Featured Image for Genesis__ now allows you to select a default, or fallback, Featured Image, which will be used if a post/page does not have a Featured Image set, or if the post/page's Featured Image is too small (smaller than your medium image setting), and on archive and taxonomy pages. You may set the Default Featured Image under Appearance > Display Featured Image Settings.
= Simple Styling =
__Display Featured Image for Genesis__ has some styling built in but I have intentionally tried to keep it minimal. All styling is for the backstretch image options, as the large options seem pretty straightforward. Stying for titles are largely inherited from your theme--for example, the title will use the same size and font for your page titles, whether you are using a Featured Image or not. Some styles you can incorporate into your own theme:
* `.has-leader` applies to any page using a leader/backstretch image. Applies to the whole page.
* `.big-leader` the container which holds the leader/backstretch image and the post/page Title and excerpt or description.
* `.featured-image-overlay` style appended to the post/page title if Move Excerpts option _is not_ selected (default).
* `.excerpt` (for single posts/pages) and `.archive-description` (for archives) are styled as a unit. These are the containers for the post/page/archive/taxonomy title and description if the Move Excerpts option _is_ selected.
* `.featured` is appended to the large image output directly above the post/page content.
== Installation ==
@@ -32,10 +46,6 @@ More words at [my site](http://robincornett.com/plugins/display-featured-image-g
== Frequently Asked Questions ==
= Where do I set a Default Featured Image? =
Display Featured Image for Genesis has its own settings page, under the main Appearance menu.
= Does this work with any Genesis child theme? =
Yes and no. Technically, it does, even older (XHTML) themes. However, depending on other factors such as the individual theme's styling and layout. Not recommended for themes such as Sixteen Nine Pro, or The 411 Pro due to layout, and not for Ambiance Pro or Minimum Pro without changing some theme functionality.
@@ -96,11 +106,15 @@ _Note:_ unless you check the option to __Move Excerpts/Archive Descriptions__, a
2. Set a Default Featured Image on the Appearance > Display Featured Image Settings page.
== Upgrade Notice ==
= 1.3.0 =
New feature: Set a Default Featured Image (1.2.0); show archive headlines/descriptions/excerpts with backstretch featured image (1.3.0)
= 1.4.0 =
New feature: set a default image to be used sitewide!
== Changelog ==
= 1.4.0 =
* all settings updated for bloat and moved to a new submenu page under Appearance
* efficiency in descriptions, output, and variables
= 1.3.0 =
* optional taxonomy/author/CPT headline now shows over leader image
* optional taxonomy/author/CPT description and single post excerpt display optionally over leader image as well