Version Description
- Better defaults
- Genesis 2.0+ considerations
Download this release
Release Info
Developer | nathanrice |
Plugin | Genesis Simple Edits |
Version | 2.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.7.1 to 2.1.0
- plugin.php +59 -60
- 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.
|
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 ( '
|
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', '
|
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', '
|
93 |
}
|
94 |
elseif ( isset( $_REQUEST['updated'] ) && 'true' == $_REQUEST['updated'] ) {
|
95 |
-
echo '<div id="message" class="updated"><p><strong>' . __( 'Simple Edits Saved', '
|
96 |
}
|
97 |
|
98 |
}
|
99 |
|
100 |
function settings_defaults() {
|
|
|
|
|
|
|
101 |
|
102 |
return array(
|
103 |
-
'post_info'
|
104 |
-
'post_meta'
|
105 |
'footer_backtotop_text' => '[footer_backtotop]',
|
106 |
-
'footer_creds_text'
|
107 |
-
'footer_output_on'
|
108 |
-
'footer_output'
|
109 |
);
|
110 |
|
111 |
}
|
112 |
|
113 |
function add_menu() {
|
114 |
|
115 |
-
add_submenu_page('genesis', __('Genesis - Simple Edits','
|
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('
|
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('
|
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="#"
|
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
|
154 |
-
<li>[
|
155 |
-
<li>[
|
156 |
-
<li>[
|
157 |
-
<li>[
|
158 |
-
<li>[
|
159 |
-
<li>[
|
160 |
-
<li>[
|
161 |
-
<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', '
|
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
|
187 |
|
188 |
-
<p><textarea name="<?php echo GSE_SETTINGS_FIELD; ?>[footer_output]" cols="80" rows="5"><?php echo
|
189 |
|
190 |
-
<p><small><a class="footer-shortcodes-toggle" href="#"
|
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 |
-
|
201 |
-
<li>[
|
202 |
-
|
203 |
-
<li>[
|
204 |
-
<li>[
|
205 |
-
<li>[
|
206 |
-
<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-
|
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 "] · [footer_childtheme_link before="" after=" %s"] [footer_genesis_link url="http://www.studiopress.com/" before=""] · [footer_wordpress_link] · [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] · [footer_genesis_link] [footer_studiopress_link] · [footer_wordpress_link] · [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 "] · [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' => 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:
|
7 |
-
Stable tag: 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 |
|
@@ -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
|