Changeset 641557
- Timestamp:
- 12/19/2012 05:51:28 AM (13 years ago)
- Location:
- jump-to-post-edit/trunk
- Files:
-
- 2 edited
-
jump-to-post-edit.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jump-to-post-edit/trunk/jump-to-post-edit.php
r641547 r641557 4 4 Plugin URI: http://www.runwalkweb.com/wp/?page_id=30 5 5 Description: Adds an option to the "Edit Post" screen, allowing the user to easily choose another post to edit by clicking a link to that post's edit screen. 6 Version: 1.0. 36 Version: 1.0.4 7 7 Author: zach_rww 8 8 Author URI: http://www.runwalkweb.com/wp … … 26 26 */ 27 27 28 if ( get_post_type() == 'post' ) {29 28 30 29 add_action( 'post_submitbox_misc_actions', 'jump_to_post_edit_option' ); 31 30 function jump_to_post_edit_option() 32 31 { 32 33 if ( get_post_type() == 'post' ) { 34 33 35 ?> 34 36 -
jump-to-post-edit/trunk/readme.txt
r641547 r641557 5 5 Requires at least: 3.3 6 6 Tested up to: 3.4.2 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 == Changelog == 39 39 40 12/19/2012: Version 1.0.4 - Fixed conditional php statement in `jump-to-post-edit.php` for `post_type` so that this feature only appears on your Edit Post screen. 41 40 42 12/19/2012: Version 1.0.3 - Added condition to `jump-to-post-edit.php` for `post_type` so that this feature only appears on your Edit Post screen. 41 43
Note: See TracChangeset
for help on using the changeset viewer.