Version Description
- The fix in 1.2.2 didn't make it for some reason, so re-patching it.
Download this release
Release Info
Developer | billerickson |
Plugin | Genesis Title Toggle |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.2.3
- genesis-title-toggle.php +3 -3
- readme.txt +7 -1
genesis-title-toggle.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Genesis Title Toggle
|
4 |
Plugin URI: http://www.billerickson.net/
|
5 |
Description: Turn on/off page titles on a per page basis, and set sitewide defaults from Theme Settings. Must be using the Genesis theme.
|
6 |
-
Version: 1.2.
|
7 |
Author: Bill Erickson
|
8 |
Author URI: http://www.billerickson.net
|
9 |
License: GPLv2
|
@@ -110,8 +110,8 @@ class BE_Title_Toggle {
|
|
110 |
function create_metaboxes( $meta_boxes ) {
|
111 |
|
112 |
// Make sure we're still in Genesis, plugins like WP Touch need this check
|
113 |
-
if ( '
|
114 |
-
return;
|
115 |
|
116 |
|
117 |
// Get all post types used by plugin and split them up into show and hide.
|
3 |
Plugin Name: Genesis Title Toggle
|
4 |
Plugin URI: http://www.billerickson.net/
|
5 |
Description: Turn on/off page titles on a per page basis, and set sitewide defaults from Theme Settings. Must be using the Genesis theme.
|
6 |
+
Version: 1.2.3
|
7 |
Author: Bill Erickson
|
8 |
Author URI: http://www.billerickson.net
|
9 |
License: GPLv2
|
110 |
function create_metaboxes( $meta_boxes ) {
|
111 |
|
112 |
// Make sure we're still in Genesis, plugins like WP Touch need this check
|
113 |
+
if ( !function_exists( 'genesis_get_option' ) )
|
114 |
+
return $meta_boxes;
|
115 |
|
116 |
|
117 |
// Get all post types used by plugin and split them up into show and hide.
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: genesis, genesiswp, title,
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 1.2.
|
8 |
|
9 |
Turn on/off page titles on a per page basis, and set sitewide defaults from Theme Settings. Must be using the Genesis theme.
|
10 |
|
@@ -38,6 +38,12 @@ Finally, if you're comfortable with code you can use the `be_title_toggle_post_t
|
|
38 |
|
39 |
== Changelog ==
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
= 1.2.1 =
|
42 |
* Typo in 1.2 caused the plugin to crash. I'm so sorry!
|
43 |
|
4 |
Tags: genesis, genesiswp, title,
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 1.2.3
|
8 |
|
9 |
Turn on/off page titles on a per page basis, and set sitewide defaults from Theme Settings. Must be using the Genesis theme.
|
10 |
|
38 |
|
39 |
== Changelog ==
|
40 |
|
41 |
+
= 1.2.3 =
|
42 |
+
* The fix in 1.2.2 didn't make it for some reason, so re-patching it.
|
43 |
+
|
44 |
+
= 1.2.2 =
|
45 |
+
* Minor modification to the way it detects Genesis. Upgrading is only necessary if you're using Premise
|
46 |
+
|
47 |
= 1.2.1 =
|
48 |
* Typo in 1.2 caused the plugin to crash. I'm so sorry!
|
49 |
|