Version Description
- Reduce requirement to Genesis 1.3
- Increase requirement to WordPress 3.0
Download this release
Release Info
Developer | nathanrice |
Plugin | Genesis Simple Hooks |
Version | 1.3.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.1.1
- plugin.php +3 -3
- readme.txt +8 -4
plugin.php
CHANGED
@@ -3,16 +3,16 @@
|
|
3 |
Plugin Name: Genesis Simple Hooks
|
4 |
Plugin URI: http://www.studiopress.com/plugins/simple-hooks
|
5 |
Description: Genesis Simple Hooks allows you easy access to the 50+ Action Hooks in the Genesis Theme.
|
6 |
-
Version: 1.3.1
|
7 |
Author: Nathan Rice
|
8 |
Author URI: http://www.nathanrice.net/
|
9 |
*/
|
10 |
|
11 |
-
// require Genesis 1.3
|
12 |
register_activation_hook(__FILE__, 'simplehooks_activation_check');
|
13 |
function simplehooks_activation_check() {
|
14 |
|
15 |
-
$latest = '1.3
|
16 |
|
17 |
$theme_info = get_theme_data(TEMPLATEPATH.'/style.css');
|
18 |
|
3 |
Plugin Name: Genesis Simple Hooks
|
4 |
Plugin URI: http://www.studiopress.com/plugins/simple-hooks
|
5 |
Description: Genesis Simple Hooks allows you easy access to the 50+ Action Hooks in the Genesis Theme.
|
6 |
+
Version: 1.3.1.1
|
7 |
Author: Nathan Rice
|
8 |
Author URI: http://www.nathanrice.net/
|
9 |
*/
|
10 |
|
11 |
+
// require Genesis 1.3 upon activation
|
12 |
register_activation_hook(__FILE__, 'simplehooks_activation_check');
|
13 |
function simplehooks_activation_check() {
|
14 |
|
15 |
+
$latest = '1.3';
|
16 |
|
17 |
$theme_info = get_theme_data(TEMPLATEPATH.'/style.css');
|
18 |
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: nathanrice, studiopress
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
|
4 |
Tags: hooks, genesis, genesiswp, studiopress
|
5 |
-
Requires at least:
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 1.3.1
|
8 |
|
9 |
This plugin creates a new Genesis settings page that allows you to insert code (HTML, Shortcodes, and PHP), and attach it to any of the 50+ action hooks throughout the Genesis Theme Framework, from StudioPress.
|
10 |
|
@@ -89,4 +89,8 @@ The most common request from Genesis users is how to properly modify their foote
|
|
89 |
* Bump to match Genesis version
|
90 |
* Require Genesis 1.3.1
|
91 |
* Added new unhook options
|
92 |
-
* Fixed bug with foreign language compatibility
|
|
|
|
|
|
|
|
2 |
Contributors: nathanrice, studiopress
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=5553118
|
4 |
Tags: hooks, genesis, genesiswp, studiopress
|
5 |
+
Requires at least: 3.0
|
6 |
+
Tested up to: 3.0.1
|
7 |
+
Stable tag: 1.3.1.1
|
8 |
|
9 |
This plugin creates a new Genesis settings page that allows you to insert code (HTML, Shortcodes, and PHP), and attach it to any of the 50+ action hooks throughout the Genesis Theme Framework, from StudioPress.
|
10 |
|
89 |
* Bump to match Genesis version
|
90 |
* Require Genesis 1.3.1
|
91 |
* Added new unhook options
|
92 |
+
* Fixed bug with foreign language compatibility
|
93 |
+
|
94 |
+
= 1.3.1.1 =
|
95 |
+
* Reduce requirement to Genesis 1.3
|
96 |
+
* Increase requirement to WordPress 3.0
|