Genesis Simple Edits - Version 2.1.0

Version Description

  • Better defaults
  • Genesis 2.0+ considerations
Download this release

Release Info

Developer nathanrice
Plugin Icon 128x128 Genesis Simple Edits
Version 2.1.0
Comparing to
See all releases

Code changes from version 1.7.1 to 2.1.0

Files changed (2) hide show
  1. plugin.php +59 -60
  2. readme.txt +9 -5
plugin.php CHANGED
@@ -6,7 +6,7 @@
6
  Author: Nathan Rice
7
  Author URI: http://www.nathanrice.net/
8
 
9
- Version: 1.7.1
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
@@ -42,26 +42,17 @@ class Genesis_Simple_Edits {
42
  }
43
 
44
  function activation_hook() {
45
-
46
- $latest = '1.7.1';
47
-
48
- $theme_info = get_theme_data( TEMPLATEPATH . '/style.css' );
49
 
50
- if ( 'genesis' != basename( TEMPLATEPATH ) ) {
51
- deactivate_plugins( plugin_basename( __FILE__ ) ); /** Deactivate ourself */
52
- wp_die( sprintf( __( 'Sorry, you can\'t activate unless you have installed <a href="%s">Genesis</a>', 'apl' ), 'http://www.studiopress.com/themes/genesis' ) );
53
- }
54
-
55
- if ( version_compare( $theme_info['Version'], $latest, '<' ) ) {
56
  deactivate_plugins( plugin_basename( __FILE__ ) ); /** Deactivate ourself */
57
- wp_die( sprintf( __( 'Sorry, you cannot activate without <a href="%s">Genesis %s</a> or greater', 'apl' ), 'http://www.studiopress.com/support/showthread.php?t=19576', $latest ) );
58
  }
59
 
60
  }
61
 
62
  function javascript() {
63
 
64
- wp_enqueue_script( 'genesis-simple-edits-js', plugin_dir_url(__FILE__) . 'js/admin.js', array( 'jquery' ), '', true );
65
 
66
  }
67
 
@@ -89,121 +80,129 @@ class Genesis_Simple_Edits {
89
  return;
90
 
91
  if ( isset( $_REQUEST['reset'] ) && 'true' == $_REQUEST['reset'] ) {
92
- echo '<div id="message" class="updated"><p><strong>' . __( 'Simple Edits Reset', 'gse' ) . '</strong></p></div>';
93
  }
94
  elseif ( isset( $_REQUEST['updated'] ) && 'true' == $_REQUEST['updated'] ) {
95
- echo '<div id="message" class="updated"><p><strong>' . __( 'Simple Edits Saved', 'gse' ) . '</strong></p></div>';
96
  }
97
 
98
  }
99
 
100
  function settings_defaults() {
 
 
 
101
 
102
  return array(
103
- 'post_info' => '[post_date] ' . __('By', 'genesis') . ' [post_author_posts_link] [post_comments] [post_edit]',
104
- 'post_meta' => '[post_categories] [post_tags]',
105
  'footer_backtotop_text' => '[footer_backtotop]',
106
- 'footer_creds_text' => __('Copyright', 'genesis') . ' [footer_copyright] [footer_childtheme_link] &middot; [footer_genesis_link] [footer_studiopress_link] &middot; [footer_wordpress_link] &middot; [footer_loginout]',
107
- 'footer_output_on' => 0,
108
- 'footer_output' => '<div class="gototop"><p>[footer_backtotop]</p></div><div class="creds"><p>' . __('Copyright', 'genesis') . ' [footer_copyright] [footer_childtheme_link] &middot; [footer_genesis_link] [footer_studiopress_link] &middot; [footer_wordpress_link] &middot; [footer_loginout]</p></div>'
109
  );
110
 
111
  }
112
 
113
  function add_menu() {
114
 
115
- add_submenu_page('genesis', __('Genesis - Simple Edits','gse'), __('Simple Edits','gse'), 'manage_options', 'genesis-simple-edits', array( &$this, 'admin_page' ) );
116
 
117
  }
118
 
119
  function admin_page() { ?>
120
-
121
  <div class="wrap">
122
  <form method="post" action="options.php">
123
  <?php settings_fields( GSE_SETTINGS_FIELD ); // important! ?>
124
 
125
- <?php screen_icon( 'options-general' ); ?>
126
  <h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
127
 
128
  <table class="form-table"><tbody>
129
 
130
  <tr>
131
- <th scope="row"><p><label for="<?php echo GSE_SETTINGS_FIELD; ?>[post_info]"><b><?php _e('Post Info', 'genesis'); ?></b></label></p></th>
132
  <td>
133
- <p><input type="text" name="<?php echo GSE_SETTINGS_FIELD; ?>[post_info]" id="<?php echo GSE_SETTINGS_FIELD; ?>[post_info]" value="<?php echo esc_attr( genesis_get_option('post_info', GSE_SETTINGS_FIELD) ); ?>" size="125" /></p>
134
  </td>
135
  </tr>
136
 
137
  <tr>
138
- <th scope="row"><p><label for="<?php echo GSE_SETTINGS_FIELD; ?>[post_meta]"><b><?php _e('Post Meta', 'genesis'); ?></b></label></p></th>
139
  <td>
140
- <p><input type="text" name="<?php echo GSE_SETTINGS_FIELD; ?>[post_meta]" id="<?php echo GSE_SETTINGS_FIELD; ?>[post_meta]" value="<?php echo esc_attr( genesis_get_option('post_meta', GSE_SETTINGS_FIELD) ); ?>" size="125" /></p>
141
 
142
- <p><small><a class="post-shortcodes-toggle" href="#">Show Available Post Info/Meta Shortcodes</a></small></p>
143
 
144
  </td>
145
  </tr>
146
 
147
  <tr class="post-shortcodes" style="display: none;">
148
- <th scope="row"><p><span class="description"><?php _e('Shortcode Reference'); ?></span></p></th>
149
  <td>
150
- <p><span class="description"><?php _e('NOTE: For a more comprehensive shortcode usage guide, <a href="http://my.studiopress.com/docs/shortcode-reference/" target="_blank">see this page</a>.') ?>
151
  <p>
152
  <ul>
153
- <li>[post_date] - <span class="description"><?php _e('Date the post was published', ''); ?></span></li>
154
- <li>[post_time] - <span class="description"><?php _e('Time the post was published', ''); ?></span></li>
155
- <li>[post_author] - <span class="description"><?php _e('Post author display name', ''); ?></span></li>
156
- <li>[post_author_link] - <span class="description"><?php _e('Post author display name, linked to their website', ''); ?></span></li>
157
- <li>[post_author_posts_link] - <span class="description"><?php _e('Post author display name, linked to their archive', ''); ?></span></li>
158
- <li>[post_comments] - <span class="description"><?php _e('Post comments link', ''); ?></span></li>
159
- <li>[post_tags] - <span class="description"><?php _e('List of post tags', ''); ?></span></li>
160
- <li>[post_categories] - <span class="description"><?php _e('List of post categories', ''); ?></span></li>
161
- <li>[post_edit] - <span class="description"><?php _e('Post edit link (visible to admins)', ''); ?></span></li>
 
 
162
  </ul>
163
  </p>
164
  </td>
165
  </tr>
166
-
 
167
  <tr>
168
- <th scope="row"><p><label for="<?php echo GSE_SETTINGS_FIELD; ?>[footer_backtotop_text]"><b><?php _e('Footer "Back to Top" Link', 'genesis'); ?></b></label></p></th>
169
  <td>
170
- <p><input type="text" name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_backtotop_text]" id="<?php echo GSE_SETTINGS_FIELD; ?>[footer_backtotop_text]" value="<?php echo esc_attr( genesis_get_option('footer_backtotop_text', GSE_SETTINGS_FIELD) ); ?>" size="125" /></p>
171
  </td>
172
  </tr>
 
173
 
174
  <tr>
175
- <th scope="row"><p><label for="<?php echo GSE_SETTINGS_FIELD; ?>[footer_creds_text]"><b><?php _e('Footer Credits Text', 'genesis'); ?></b></label></p></th>
176
  <td>
177
- <p><input type="text" name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_creds_text]" id="<?php echo GSE_SETTINGS_FIELD; ?>[footer_creds_text]" value="<?php echo esc_attr( genesis_get_option('footer_creds_text', GSE_SETTINGS_FIELD) ); ?>" size="125" /></p>
178
  </td>
179
  </tr>
180
 
181
  <tr>
182
- <th scope="row"><p><b><?php _e('Footer Output', 'gse'); ?></b></p></th>
183
  <td>
184
- <p><input type="checkbox" name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output_on]" id="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output_on]" value="1" <?php checked( 1, genesis_get_option('footer_output_on', GSE_SETTINGS_FIELD) ); ?> /> <label for="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output_on]"><?php _e('Modify Entire Footer Text (including markup)?', 'genesis'); ?></label></p>
185
 
186
- <p><span class="description"><?php _e('NOTE: Checking this option will override any edits you may have done to the footer "Back to Top" link or Credits text above.'); ?></span></p>
187
 
188
- <p><textarea name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output]" cols="80" rows="5"><?php echo esc_html( htmlspecialchars( genesis_get_option('footer_output', GSE_SETTINGS_FIELD) ) ); ?></textarea></p>
189
 
190
- <p><small><a class="footer-shortcodes-toggle" href="#">Show Available Footer Shortcodes</a></small></p>
191
  </td>
192
  </tr>
193
 
194
  <tr class="footer-shortcodes" style="display: none;">
195
- <th scope="row"><p><span class="description"><?php _e('Shortcode Reference'); ?></span></p></th>
196
  <td>
197
- <p><span class="description"><?php _e('NOTE: For a more comprehensive shortcode usage guide, <a href="http://my.studiopress.com/docs/shortcode-reference/" target="_blank">see this page</a>.') ?>
198
  <p>
199
  <ul>
200
- <li>[footer_backtotop] - <span class="description"><?php _e('The "Back to Top" Link', ''); ?></span></li>
201
- <li>[footer_copyright] - <span class="description"><?php _e('The Copyright notice', ''); ?></span></li>
202
- <li>[footer_childtheme_link] - <span class="description"><?php _e('The Child Theme Link', ''); ?></span></li>
203
- <li>[footer_genesis_link] - <span class="description"><?php _e('The Genesis Link', ''); ?></span></li>
204
- <li>[footer_studiopress_link] - <span class="description"><?php _e('The StudioPress Link', ''); ?></span></li>
205
- <li>[footer_wordpress_link] - <span class="description"><?php _e('The WordPress Link', ''); ?></span></li>
206
- <li>[footer_loginout] - <span class="description"><?php _e('Log In/Out Link', ''); ?></span></li>
 
 
207
  </ul>
208
  </p>
209
  </td>
@@ -212,8 +211,8 @@ class Genesis_Simple_Edits {
212
  </tbody></table>
213
 
214
  <div class="bottom-buttons">
215
- <input type="submit" class="button-primary" value="<?php _e('Save Settings', 'genesis') ?>" />
216
- <input type="submit" class="button-highlighted" name="<?php echo GSE_SETTINGS_FIELD; ?>[reset]" value="<?php _e('Reset Settings', 'genesis'); ?>" />
217
  </div>
218
 
219
  </form>
6
  Author: Nathan Rice
7
  Author URI: http://www.nathanrice.net/
8
 
9
+ Version: 2.1.0
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
42
  }
43
 
44
  function activation_hook() {
 
 
 
 
45
 
46
+ if ( ! defined( 'PARENT_THEME_VERSION' ) || ! version_compare( PARENT_THEME_VERSION, '2.1.0', '>=' ) ) {
 
 
 
 
 
47
  deactivate_plugins( plugin_basename( __FILE__ ) ); /** Deactivate ourself */
48
+ wp_die( sprintf( __( 'Sorry, you cannot activate without <a href="%s">Genesis %s</a> or greater', 'genesis-simple-edits' ), 'http://my.studiopress.com/?download_id=91046d629e74d525b3f2978e404e7ffa', '2.1.0' ) );
49
  }
50
 
51
  }
52
 
53
  function javascript() {
54
 
55
+ wp_enqueue_script( 'genesis-simple-edits-js', plugin_dir_url(__FILE__) . 'js/admin.js', array( 'jquery' ), '2.1.0', true );
56
 
57
  }
58
 
80
  return;
81
 
82
  if ( isset( $_REQUEST['reset'] ) && 'true' == $_REQUEST['reset'] ) {
83
+ echo '<div id="message" class="updated"><p><strong>' . __( 'Simple Edits Reset', 'genesis-simple-edits' ) . '</strong></p></div>';
84
  }
85
  elseif ( isset( $_REQUEST['updated'] ) && 'true' == $_REQUEST['updated'] ) {
86
+ echo '<div id="message" class="updated"><p><strong>' . __( 'Simple Edits Saved', 'genesis-simple-edits' ) . '</strong></p></div>';
87
  }
88
 
89
  }
90
 
91
  function settings_defaults() {
92
+
93
+ $footer_html5 = sprintf( '<p>[footer_copyright before="%s "] &middot; [footer_childtheme_link before="" after=" %s"] [footer_genesis_link url="http://www.studiopress.com/" before=""] &middot; [footer_wordpress_link] &middot; [footer_loginout]</p>', __( 'Copyright', 'genesis-simple-edits' ), __( 'On', 'genesis-simple-edits' ) );
94
+ $footer_xhtml = '<div class="gototop"><p>[footer_backtotop]</p></div><div class="creds"><p>' . __( 'Copyright', 'genesis-simple-edits' ) . ' [footer_copyright] [footer_childtheme_link] &middot; [footer_genesis_link] [footer_studiopress_link] &middot; [footer_wordpress_link] &middot; [footer_loginout]</p></div>';
95
 
96
  return array(
97
+ 'post_info' => '[post_date] ' . __( 'By', 'genesis-simple-edits' ) . ' [post_author_posts_link] [post_comments] [post_edit]',
98
+ 'post_meta' => '[post_categories] [post_tags]',
99
  'footer_backtotop_text' => '[footer_backtotop]',
100
+ 'footer_creds_text' => sprintf( '[footer_copyright before="%s "] &middot; [footer_childtheme_link before="" after=" %s"] [footer_genesis_link url="http://www.studiopress.com/" before=""] &middot; [footer_wordpress_link] &middot; [footer_loginout]', __( 'Copyright', 'genesis-simple-edits' ), __( 'On', 'genesis-simple-edits' ) ),
101
+ 'footer_output_on' => 0,
102
+ 'footer_output' => genesis_html5() ? $footer_html5 : $footer_xhtml,
103
  );
104
 
105
  }
106
 
107
  function add_menu() {
108
 
109
+ add_submenu_page( 'genesis', __( 'Genesis - Simple Edits', 'genesis-simple-edits' ), __( 'Simple Edits','genesis-simple-edits' ), 'manage_options', 'genesis-simple-edits', array( &$this, 'admin_page' ) );
110
 
111
  }
112
 
113
  function admin_page() { ?>
114
+
115
  <div class="wrap">
116
  <form method="post" action="options.php">
117
  <?php settings_fields( GSE_SETTINGS_FIELD ); // important! ?>
118
 
 
119
  <h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
120
 
121
  <table class="form-table"><tbody>
122
 
123
  <tr>
124
+ <th scope="row"><p><label for="<?php echo GSE_SETTINGS_FIELD; ?>[post_info]"><b><?php _e( 'Entry Meta (above content)', 'genesis-simple-edits' ); ?></b></label></p></th>
125
  <td>
126
+ <p><input type="text" name="<?php echo GSE_SETTINGS_FIELD; ?>[post_info]" id="<?php echo GSE_SETTINGS_FIELD; ?>[post_info]" value="<?php echo esc_attr( genesis_get_option( 'post_info', GSE_SETTINGS_FIELD ) ); ?>" size="125" /></p>
127
  </td>
128
  </tr>
129
 
130
  <tr>
131
+ <th scope="row"><p><label for="<?php echo GSE_SETTINGS_FIELD; ?>[post_meta]"><b><?php _e( 'Entry Meta (below content)', 'genesis-simple-edits' ); ?></b></label></p></th>
132
  <td>
133
+ <p><input type="text" name="<?php echo GSE_SETTINGS_FIELD; ?>[post_meta]" id="<?php echo GSE_SETTINGS_FIELD; ?>[post_meta]" value="<?php echo esc_attr( genesis_get_option( 'post_meta', GSE_SETTINGS_FIELD ) ); ?>" size="125" /></p>
134
 
135
+ <p><small><a class="post-shortcodes-toggle" href="#"><?php _e( 'Show available entry meta shortcodes', 'genesis-simple-edits' ) ?></a></small></p>
136
 
137
  </td>
138
  </tr>
139
 
140
  <tr class="post-shortcodes" style="display: none;">
141
+ <th scope="row"><p><span class="description"><?php _e( 'Shortcode Reference', 'genesis-simple-edits' ); ?></span></p></th>
142
  <td>
143
+ <p><span class="description"><?php _e( 'NOTE: For a more comprehensive shortcode usage guide, <a href="http://my.studiopress.com/docs/shortcode-reference/" target="_blank">see this page</a>.', 'genesis-simple-edits' ); ?>
144
  <p>
145
  <ul>
146
+ <li>[post_date] - <span class="description"><?php _e( 'Date the entry was published', 'genesis-simple-edits' ); ?></span></li>
147
+ <li>[post_modified_date] - <span class="description"><?php _e( 'Date the entry was last modified', 'genesis-simple-edits' ); ?></span></li>
148
+ <li>[post_time] - <span class="description"><?php _e( 'Time the entry was published', 'genesis-simple-edits' ); ?></span></li>
149
+ <li>[post_modified_time] - <span class="description"><?php _e( 'Time the entry was last modified', 'genesis-simple-edits' ); ?></span></li>
150
+ <li>[post_author] - <span class="description"><?php _e( 'Entry author display name', 'genesis-simple-edits' ); ?></span></li>
151
+ <li>[post_author_link] - <span class="description"><?php _e( 'Entry author display name, linked to their website', 'genesis-simple-edits' ); ?></span></li>
152
+ <li>[post_author_posts_link] - <span class="description"><?php _e( 'Entry author display name, linked to their archive', 'genesis-simple-edits' ); ?></span></li>
153
+ <li>[post_comments] - <span class="description"><?php _e( 'Entry comments link', 'genesis-simple-edits' ); ?></span></li>
154
+ <li>[post_tags] - <span class="description"><?php _e( 'List of entry tags', 'genesis-simple-edits' ); ?></span></li>
155
+ <li>[post_categories] - <span class="description"><?php _e( 'List of entry categories', 'genesis-simple-edits' ); ?></span></li>
156
+ <li>[post_edit] - <span class="description"><?php _e( 'Entry edit link (visible to admins)', 'genesis-simple-edits' ); ?></span></li>
157
  </ul>
158
  </p>
159
  </td>
160
  </tr>
161
+
162
+ <?php if ( ! genesis_html5() ) : ?>
163
  <tr>
164
+ <th scope="row"><p><label for="<?php echo GSE_SETTINGS_FIELD; ?>[footer_backtotop_text]"><b><?php _e( 'Footer "Back to Top" Link', 'genesis-simple-edits' ); ?></b></label></p></th>
165
  <td>
166
+ <p><input type="text" name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_backtotop_text]" id="<?php echo GSE_SETTINGS_FIELD; ?>[footer_backtotop_text]" value="<?php echo esc_attr( genesis_get_option( 'footer_backtotop_text', GSE_SETTINGS_FIELD ) ); ?>" size="125" /></p>
167
  </td>
168
  </tr>
169
+ <?php endif; ?>
170
 
171
  <tr>
172
+ <th scope="row"><p><label for="<?php echo GSE_SETTINGS_FIELD; ?>[footer_creds_text]"><b><?php _e( 'Footer Credits Text', 'genesis-simple-edits' ); ?></b></label></p></th>
173
  <td>
174
+ <p><input type="text" name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_creds_text]" id="<?php echo GSE_SETTINGS_FIELD; ?>[footer_creds_text]" value="<?php echo esc_attr( genesis_get_option( 'footer_creds_text', GSE_SETTINGS_FIELD ) ); ?>" size="125" /></p>
175
  </td>
176
  </tr>
177
 
178
  <tr>
179
+ <th scope="row"><p><b><?php _e( 'Footer Output', 'genesis-simple-edits' ); ?></b></p></th>
180
  <td>
181
+ <p><input type="checkbox" name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output_on]" id="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output_on]" value="1" <?php checked( 1, genesis_get_option( 'footer_output_on', GSE_SETTINGS_FIELD ) ); ?> /> <label for="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output_on]"><?php _e( 'Modify Entire Footer Text (including markup)?', 'genesis-simple-edits' ); ?></label></p>
182
 
183
+ <p><span class="description"><?php _e( 'NOTE: Checking this option will use the content of the box below, and override the options above.', 'genesis-simple-edits' ); ?></span></p>
184
 
185
+ <p><textarea name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output]" cols="80" rows="5"><?php echo esc_textarea( genesis_get_option( 'footer_output', GSE_SETTINGS_FIELD ) ); ?></textarea></p>
186
 
187
+ <p><small><a class="footer-shortcodes-toggle" href="#"><?php _e( 'Show available footer shortcodes', 'genesis-simple-edits' ); ?></a></small></p>
188
  </td>
189
  </tr>
190
 
191
  <tr class="footer-shortcodes" style="display: none;">
192
+ <th scope="row"><p><span class="description"><?php _e( 'Shortcode Reference', 'genesis-simple-edits' ); ?></span></p></th>
193
  <td>
194
+ <p><span class="description"><?php _e( 'NOTE: For a more comprehensive shortcode usage guide, <a href="http://my.studiopress.com/docs/shortcode-reference/" target="_blank">see this page</a>.', 'genesis-simple-edits' ); ?>
195
  <p>
196
  <ul>
197
+ <?php if ( ! genesis_html5() ) : ?>
198
+ <li>[footer_backtotop] - <span class="description"><?php _e( 'The "Back to Top" Link', ''); ?></span></li>
199
+ <?php endif; ?>
200
+ <li>[footer_copyright] - <span class="description"><?php _e( 'The Copyright notice', 'genesis-simple-edits' ); ?></span></li>
201
+ <li>[footer_childtheme_link] - <span class="description"><?php _e( 'The Child Theme Link', 'genesis-simple-edits' ); ?></span></li>
202
+ <li>[footer_genesis_link] - <span class="description"><?php _e( 'The Genesis Link', 'genesis-simple-edits' ); ?></span></li>
203
+ <li>[footer_studiopress_link] - <span class="description"><?php _e( 'The StudioPress Link', 'genesis-simple-edits' ); ?></span></li>
204
+ <li>[footer_wordpress_link] - <span class="description"><?php _e( 'The WordPress Link', 'genesis-simple-edits' ); ?></span></li>
205
+ <li>[footer_loginout] - <span class="description"><?php _e( 'Log In/Out Link', 'genesis-simple-edits' ); ?></span></li>
206
  </ul>
207
  </p>
208
  </td>
211
  </tbody></table>
212
 
213
  <div class="bottom-buttons">
214
+ <input type="submit" class="button-primary" value="<?php _e( 'Save Settings', 'genesis-simple-edits' ); ?>" />
215
+ <input type="submit" class="button-secondary" name="<?php echo GSE_SETTINGS_FIELD; ?>[reset]" value="<?php _e( 'Reset Settings', 'genesis-simple-edits' ); ?>" />
216
  </div>
217
 
218
  </form>
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.2
6
- Tested up to: 3.5
7
- Stable tag: 1.7.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://dev.studiopress.com/shortcode-reference) for a list of available Genesis-specific shortcodes.
29
 
30
  = My PHP isn't working =
31
 
@@ -43,4 +43,8 @@ You must have Genesis (1.3+) or a Genesis child theme installed and activated on
43
  = 1.7.1 =
44
  * Increased installation requirement to Genesis 1.7.1
45
  * Removed PHP4 constructor
46
- * Whitespace, standards, and documentation
 
 
 
 
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.9.2
6
+ Tested up to: 4.0.0
7
+ Stable tag: 2.1.0
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://my.studiopress.com/docs/shortcode-reference) for a list of available Genesis-specific shortcodes.
29
 
30
  = My PHP isn't working =
31
 
43
  = 1.7.1 =
44
  * Increased installation requirement to Genesis 1.7.1
45
  * Removed PHP4 constructor
46
+ * Whitespace, standards, and documentation
47
+
48
+ = 2.1.0 =
49
+ * Better defaults
50
+ * Genesis 2.0+ considerations