mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-06-05 15:08:20 +09:00
Merge branch 'hotfix/widget-includes'
This commit is contained in:
@@ -254,6 +254,9 @@ Similar hooks:
|
||||
|
||||
## Changelog
|
||||
|
||||
### 3.1.1
|
||||
* fix widget output error when multiple instances are called on a page
|
||||
|
||||
### 3.1.0
|
||||
* added: option to display the banner image using only CSS and responsive images, instead of JavaScript
|
||||
* changed: CSS, mostly related to the CSS-only banner image, but also made entry title CSS less specific
|
||||
|
||||
@@ -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.1.0
|
||||
* Version: 3.1.1
|
||||
* Author: Robin Cornett
|
||||
* Author URI: https://robincornett.com
|
||||
* Text Domain: display-featured-image-genesis
|
||||
|
||||
@@ -18,7 +18,7 @@ class Display_Featured_Image_Genesis_Common {
|
||||
* @var string
|
||||
* @since 1.4.3
|
||||
*/
|
||||
public $version = '3.1.0';
|
||||
public $version = '3.1.1';
|
||||
|
||||
/**
|
||||
* @var $instance
|
||||
|
||||
@@ -69,7 +69,7 @@ class Display_Featured_Image_Genesis_Author_Widget extends WP_Widget {
|
||||
|
||||
echo $args['before_widget'];
|
||||
|
||||
include plugin_dir_path( dirname( __FILE__ ) ) . 'output/class-displayfeaturedimagegenesis-output-author.php';
|
||||
include_once plugin_dir_path( dirname( __FILE__ ) ) . 'output/class-displayfeaturedimagegenesis-output-author.php';
|
||||
new DisplayFeaturedImageGenesisOutputAuthor( $instance, $args, $this->id_base );
|
||||
|
||||
echo $args['after_widget'];
|
||||
|
||||
@@ -81,7 +81,7 @@ class Display_Featured_Image_Genesis_Widget_CPT extends WP_Widget {
|
||||
|
||||
echo $args['before_widget'];
|
||||
|
||||
include plugin_dir_path( dirname( __FILE__ ) ) . 'output/class-displayfeaturedimagegenesis-output-cpt.php';
|
||||
include_once plugin_dir_path( dirname( __FILE__ ) ) . 'output/class-displayfeaturedimagegenesis-output-cpt.php';
|
||||
new DisplayFeaturedImageGenesisOutputCPT( $instance, $args, $post_type, $this->id_base );
|
||||
|
||||
echo $args['after_widget'];
|
||||
|
||||
@@ -82,7 +82,7 @@ class Display_Featured_Image_Genesis_Widget_Taxonomy extends WP_Widget {
|
||||
$args['before_widget'] = str_replace( 'class="widget ', 'class="widget ' . $term->slug . ' ', $args['before_widget'] );
|
||||
echo $args['before_widget'];
|
||||
|
||||
include plugin_dir_path( dirname( __FILE__ ) ) . 'output/class-displayfeaturedimagegenesis-output-term.php';
|
||||
include_once plugin_dir_path( dirname( __FILE__ ) ) . 'output/class-displayfeaturedimagegenesis-output-term.php';
|
||||
new DisplayFeaturedImageGenesisOutputTerm( $instance, $args, $term, $this->id_base );
|
||||
|
||||
echo $args['after_widget'];
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "display-featured-image-genesis",
|
||||
"description": "Display Featured Image for Genesis",
|
||||
"version": "3.1.0",
|
||||
"version": "3.1.1",
|
||||
"private": true,
|
||||
"license": "GPL-2.0",
|
||||
"devDependencies": {
|
||||
|
||||
+4
-1
@@ -5,7 +5,7 @@ Donate link: https://robincornett.com/donate/
|
||||
Tags: banner, featured image, featured images, genesis, studiopress, post thumbnails, featured image rss, rss
|
||||
Requires at least: 4.8
|
||||
Tested up to: 5.2
|
||||
Stable tag: 3.1.0
|
||||
Stable tag: 3.1.1
|
||||
Requires PHP: 5.6
|
||||
License: GPL-2.0+
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
||||
@@ -220,6 +220,9 @@ Similar hooks:
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 3.1.1 =
|
||||
* fix widget output error when multiple instances are called on a page
|
||||
|
||||
= 3.1.0 =
|
||||
* added: option to display the banner image using only CSS and responsive images, instead of JavaScript
|
||||
* changed: CSS, mostly related to the CSS-only banner image, but also made entry title CSS less specific
|
||||
|
||||
Reference in New Issue
Block a user