Version Description
- Prevent fatal error when Genesis 2.1 not active
Download this release
Release Info
| Developer | nathanrice |
| Plugin | |
| Version | 2.1.1 |
| Comparing to | |
| See all releases | |
Code changes from version 2.1.0 to 2.1.1
- plugin.php +2 -2
- readme.txt +8 -6
plugin.php
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
Author: Nathan Rice
|
| 7 |
Author URI: http://www.nathanrice.net/
|
| 8 |
|
| 9 |
-
Version: 2.1.
|
| 10 |
|
| 11 |
License: GNU General Public License v2.0 (or later)
|
| 12 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
|
@@ -99,7 +99,7 @@ class Genesis_Simple_Edits {
|
|
| 99 |
'footer_backtotop_text' => '[footer_backtotop]',
|
| 100 |
'footer_creds_text' => sprintf( '[footer_copyright before="%s "] · [footer_childtheme_link before="" after=" %s"] [footer_genesis_link url="http://www.studiopress.com/" before=""] · [footer_wordpress_link] · [footer_loginout]', __( 'Copyright', 'genesis-simple-edits' ), __( 'On', 'genesis-simple-edits' ) ),
|
| 101 |
'footer_output_on' => 0,
|
| 102 |
-
'footer_output' =>
|
| 103 |
);
|
| 104 |
|
| 105 |
}
|
| 6 |
Author: Nathan Rice
|
| 7 |
Author URI: http://www.nathanrice.net/
|
| 8 |
|
| 9 |
+
Version: 2.1.1
|
| 10 |
|
| 11 |
License: GNU General Public License v2.0 (or later)
|
| 12 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
| 99 |
'footer_backtotop_text' => '[footer_backtotop]',
|
| 100 |
'footer_creds_text' => sprintf( '[footer_copyright before="%s "] · [footer_childtheme_link before="" after=" %s"] [footer_genesis_link url="http://www.studiopress.com/" before=""] · [footer_wordpress_link] · [footer_loginout]', __( 'Copyright', 'genesis-simple-edits' ), __( 'On', 'genesis-simple-edits' ) ),
|
| 101 |
'footer_output_on' => 0,
|
| 102 |
+
'footer_output' => current_theme_supports( 'html5' ) ? $footer_html5 : $footer_xhtml,
|
| 103 |
);
|
| 104 |
|
| 105 |
}
|
readme.txt
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
Contributors: nathanrice, studiopress, wpmuguru
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
|
| 4 |
Tags: shortcodes, genesis, genesiswp, studiopress
|
| 5 |
-
Requires at least: 3.
|
| 6 |
-
Tested up to:
|
| 7 |
-
Stable tag: 2.1.
|
| 8 |
|
| 9 |
This plugin lets you edit the three most commonly modified areas in any Genesis theme: the post-info (byline), the post-meta, and the footer area.
|
| 10 |
|
|
@@ -25,7 +25,7 @@ This plugin creates a new Genesis settings page that allows you to modify the po
|
|
| 25 |
|
| 26 |
= What are Shortcodes? =
|
| 27 |
|
| 28 |
-
Check out the [Shortcodes API](http://codex.wordpress.org/Shortcode_API) for an explanation, and our [Shortcode Reference](http://
|
| 29 |
|
| 30 |
= My PHP isn't working =
|
| 31 |
|
|
@@ -46,5 +46,7 @@ You must have Genesis (1.3+) or a Genesis child theme installed and activated on
|
|
| 46 |
* Whitespace, standards, and documentation
|
| 47 |
|
| 48 |
= 2.1.0 =
|
| 49 |
-
*
|
| 50 |
-
|
|
|
|
|
|
| 2 |
Contributors: nathanrice, studiopress, wpmuguru
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
|
| 4 |
Tags: shortcodes, genesis, genesiswp, studiopress
|
| 5 |
+
Requires at least: 3.2
|
| 6 |
+
Tested up to: 3.5
|
| 7 |
+
Stable tag: 2.1.1
|
| 8 |
|
| 9 |
This plugin lets you edit the three most commonly modified areas in any Genesis theme: the post-info (byline), the post-meta, and the footer area.
|
| 10 |
|
| 25 |
|
| 26 |
= What are Shortcodes? =
|
| 27 |
|
| 28 |
+
Check out the [Shortcodes API](http://codex.wordpress.org/Shortcode_API) for an explanation, and our [Shortcode Reference](http://dev.studiopress.com/shortcode-reference) for a list of available Genesis-specific shortcodes.
|
| 29 |
|
| 30 |
= My PHP isn't working =
|
| 31 |
|
| 46 |
* Whitespace, standards, and documentation
|
| 47 |
|
| 48 |
= 2.1.0 =
|
| 49 |
+
* Genesis 2.1+ compatibility
|
| 50 |
+
|
| 51 |
+
= 2.1.1 =
|
| 52 |
+
* Prevent fatal error when Genesis 2.1 not active
|
