Changeset 854881
- Timestamp:
- 02/10/2014 04:59:10 PM (12 years ago)
- Location:
- post-author
- Files:
-
- 4 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from post-author/trunk)
-
tags/1.1.1/post_author.php (modified) (3 diffs)
-
tags/1.1.1/readme.txt (modified) (3 diffs)
-
trunk/post_author.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-author/tags/1.1.1/post_author.php
r854244 r854881 5 5 Description: Adds the name of author at the top or bottom of the content or excerpts (post / page / archive), plus optional publishing and last editing date, complete with surrounding text and a per-post hide option for exceptions. 6 6 Author: David Shabtai 7 Version: 1.1 7 Version: 1.1.1 8 8 Author URI: http://www.glanum.com 9 9 Copyright (C) 2014 David Shabtai … … 713 713 { 714 714 add_meta_box('authordiv', __('Author'), 'post_author_custom_box', 'post', 'normal'); 715 add_meta_box(' pageauthordiv', __('PageAuthor'), 'post_author_custom_box', 'page', 'normal');715 add_meta_box('authordiv', __('Author'), 'post_author_custom_box', 'page', 'normal'); 716 716 } 717 717 } … … 754 754 $post_author_custom .= 'checked="checked"'; 755 755 } 756 $post_author_custom .= '/> <label for="' . $post_author_box['name'] . ' ">' . __("Hide author for this article (<i>Post Author plugin</i>)", "post_author") . '</label>';756 $post_author_custom .= '/> <label for="' . $post_author_box['name'] . '_value">' . __("Hide author for this article (<i>Post Author plugin</i>)", "post_author") . '</label>'; 757 757 $post_author_custom .= '</span>'; 758 758 echo $original_wp_author_box . $post_author_custom; -
post-author/tags/1.1.1/readme.txt
r854244 r854881 5 5 Requires at least: 3.2 6 6 Tested up to: 3.8.1 7 Stable tag: 1.1 7 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 … … 86 86 * Requires WP >= 3.2 87 87 88 = 1.1.1 = 89 * Bugfix : Minor update for the Author box on page edit (there could be a confusion and duplicate author box depending on view settings and WP version). This update makes sure we use the same Author box as WP on page edition (for WP 3+). And fixed the clickable label, same place. 90 88 91 = 1.1 = 89 92 * Improvement : Updated the method for loading translation files. … … 119 122 = 0.4 = 120 123 * Improvement : Added last revision author name, link and date, all customizable. Some tiny CSS update to accomodate new function. 121 * Bug fix : for WP 9.0+, remove deprecated page_author_meta_box on new/edit page articles.124 * Bug fix : for WP 2.9.0+, remove deprecated page_author_meta_box on new/edit page articles. 122 125 * Bug fix : hide exception on posts and pages update was broken. 123 126 -
post-author/trunk/post_author.php
r854244 r854881 5 5 Description: Adds the name of author at the top or bottom of the content or excerpts (post / page / archive), plus optional publishing and last editing date, complete with surrounding text and a per-post hide option for exceptions. 6 6 Author: David Shabtai 7 Version: 1.1 7 Version: 1.1.1 8 8 Author URI: http://www.glanum.com 9 9 Copyright (C) 2014 David Shabtai … … 713 713 { 714 714 add_meta_box('authordiv', __('Author'), 'post_author_custom_box', 'post', 'normal'); 715 add_meta_box(' pageauthordiv', __('PageAuthor'), 'post_author_custom_box', 'page', 'normal');715 add_meta_box('authordiv', __('Author'), 'post_author_custom_box', 'page', 'normal'); 716 716 } 717 717 } … … 754 754 $post_author_custom .= 'checked="checked"'; 755 755 } 756 $post_author_custom .= '/> <label for="' . $post_author_box['name'] . ' ">' . __("Hide author for this article (<i>Post Author plugin</i>)", "post_author") . '</label>';756 $post_author_custom .= '/> <label for="' . $post_author_box['name'] . '_value">' . __("Hide author for this article (<i>Post Author plugin</i>)", "post_author") . '</label>'; 757 757 $post_author_custom .= '</span>'; 758 758 echo $original_wp_author_box . $post_author_custom; -
post-author/trunk/readme.txt
r854244 r854881 5 5 Requires at least: 3.2 6 6 Tested up to: 3.8.1 7 Stable tag: 1.1 7 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 … … 86 86 * Requires WP >= 3.2 87 87 88 = 1.1.1 = 89 * Bugfix : Minor update for the Author box on page edit (there could be a confusion and duplicate author box depending on view settings and WP version). This update makes sure we use the same Author box as WP on page edition (for WP 3+). And fixed the clickable label, same place. 90 88 91 = 1.1 = 89 92 * Improvement : Updated the method for loading translation files. … … 119 122 = 0.4 = 120 123 * Improvement : Added last revision author name, link and date, all customizable. Some tiny CSS update to accomodate new function. 121 * Bug fix : for WP 9.0+, remove deprecated page_author_meta_box on new/edit page articles.124 * Bug fix : for WP 2.9.0+, remove deprecated page_author_meta_box on new/edit page articles. 122 125 * Bug fix : hide exception on posts and pages update was broken. 123 126
Note: See TracChangeset
for help on using the changeset viewer.