Changeset 3404779
- Timestamp:
- 11/28/2025 07:25:23 AM (4 months ago)
- Location:
- quickpick
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.4 (copied) (copied from quickpick/trunk)
-
tags/1.0.4/quickpick.php (modified) (4 diffs)
-
tags/1.0.4/readme.txt (modified) (2 diffs)
-
trunk/quickpick.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quickpick/tags/1.0.4/quickpick.php
r3375497 r3404779 4 4 * Plugin URI: https://wordpress.org/plugins/quickpick 5 5 * Description: QuickPick is a tiny WordPress plugin that will help you to save time on finding just recently editing posts. 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: Alexei Samarschi 8 8 * Author URI: https://profiles.wordpress.org/alexus450/ … … 13 13 * Requires at least: 5.0 14 14 * Requires PHP: 5.6 15 * Tested up to: 6. 815 * Tested up to: 6.9 16 16 * Update URI: https://wordpress.org/plugins/quickpick/ 17 17 */ … … 196 196 $out .= '<li> 197 197 <a href="' . get_edit_post_link( $query->post->ID ) . '"> 198 ' . get_the_title( $query->post->ID ) . ' <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>198 ' . get_the_title( $query->post->ID ) . ' <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( 'Y/m/d' ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span> 199 199 </a> 200 200 </li>'; … … 232 232 $out .= '<li> 233 233 <a href="' . get_edit_post_link( $query->post->ID ) . '"> 234 ' . get_the_title( $query->post->ID ) . ' <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>234 ' . get_the_title( $query->post->ID ) . ' <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( 'Y/m/d' ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span> 235 235 </a> 236 236 </li>'; -
quickpick/tags/1.0.4/readme.txt
r3375497 r3404779 5 5 Requires at least: 5.0 6 6 Requires PHP: 5.6 7 Tested up to: 6. 88 Stable tag: 1.0. 37 Tested up to: 6.9 8 Stable tag: 1.0.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 65 65 == Changelog == 66 66 67 = 1.0.4 = 68 * Minor fix 69 * Compatibility WordPress Version 6.9 70 67 71 = 1.0.3 = 68 72 * Added action link in pages list to set page as homepage with one click -
quickpick/trunk/quickpick.php
r3375497 r3404779 4 4 * Plugin URI: https://wordpress.org/plugins/quickpick 5 5 * Description: QuickPick is a tiny WordPress plugin that will help you to save time on finding just recently editing posts. 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: Alexei Samarschi 8 8 * Author URI: https://profiles.wordpress.org/alexus450/ … … 13 13 * Requires at least: 5.0 14 14 * Requires PHP: 5.6 15 * Tested up to: 6. 815 * Tested up to: 6.9 16 16 * Update URI: https://wordpress.org/plugins/quickpick/ 17 17 */ … … 196 196 $out .= '<li> 197 197 <a href="' . get_edit_post_link( $query->post->ID ) . '"> 198 ' . get_the_title( $query->post->ID ) . ' <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>198 ' . get_the_title( $query->post->ID ) . ' <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( 'Y/m/d' ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span> 199 199 </a> 200 200 </li>'; … … 232 232 $out .= '<li> 233 233 <a href="' . get_edit_post_link( $query->post->ID ) . '"> 234 ' . get_the_title( $query->post->ID ) . ' <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>234 ' . get_the_title( $query->post->ID ) . ' <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( 'Y/m/d' ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span> 235 235 </a> 236 236 </li>'; -
quickpick/trunk/readme.txt
r3375497 r3404779 5 5 Requires at least: 5.0 6 6 Requires PHP: 5.6 7 Tested up to: 6. 88 Stable tag: 1.0. 37 Tested up to: 6.9 8 Stable tag: 1.0.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 65 65 == Changelog == 66 66 67 = 1.0.4 = 68 * Minor fix 69 * Compatibility WordPress Version 6.9 70 67 71 = 1.0.3 = 68 72 * Added action link in pages list to set page as homepage with one click
Note: See TracChangeset
for help on using the changeset viewer.