Changeset 3186838
- Timestamp:
- 11/13/2024 01:17:50 AM (17 months ago)
- Location:
- smart-prev-next
- Files:
-
- 3 added
- 6 edited
- 1 copied
-
assets/icon-128x128.png (added)
-
assets/icon-256x256.png (added)
-
assets/icon.png (added)
-
tags/1.5 (copied) (copied from smart-prev-next/trunk)
-
tags/1.5/readme.txt (modified) (2 diffs)
-
tags/1.5/smart-prev-next-functions.php (modified) (2 diffs)
-
tags/1.5/smart-prev-next.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smart-prev-next-functions.php (modified) (2 diffs)
-
trunk/smart-prev-next.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smart-prev-next/tags/1.5/readme.txt
r3186831 r3186838 7 7 Tested up to: 6.7 8 8 Requires PHP: 7.0 9 Stable tag: 1. 49 Stable tag: 1.5 10 10 License: GPLv2 11 11 … … 42 42 43 43 == Changelog == 44 = 1.5 = 45 * Release date: November 12, 2024 46 * More fixes for WP 6.7. 47 44 48 = 1.4 = 45 49 * Release date: November 12, 2024 -
smart-prev-next/tags/1.5/smart-prev-next-functions.php
r3186831 r3186838 324 324 // Check to see which location we're placing the buttons. 325 325 // WP 6.1 changed the class for the settings box. 326 // WP 6.7 made more changes to the location 327 if( version_compare( $wp_version, '6.7' ) >= 0 ) { 328 $location = 'div .editor-preview-dropdown'; 329 } else if( version_compare( $wp_version, '6.1' ) < 0 ) { 326 if( version_compare( $wp_version, '6.1' ) < 0 ) { 330 327 $location = 'div .edit-post-header__settings'; 331 328 } else { … … 369 366 370 367 if( typeof pinned_items === 'object' ) { 371 pinned_items. before( '<?php echo $first_post_button . $previous_post_button . $next_post_button . $last_post_button; ?>' );368 pinned_items.prepend( '<?php echo $first_post_button . $previous_post_button . $next_post_button . $last_post_button; ?>' ); 372 369 } else { 373 370 setTimeout( 'SmartPrevNextAddPrevNext()', 250 ); -
smart-prev-next/tags/1.5/smart-prev-next.php
r3186831 r3186838 2 2 /* 3 3 Plugin Name: Smart Prev Next 4 Version: 1. 44 Version: 1.5 5 5 Plugin URI: http://toolstack.com/smart-prev-next 6 6 Author: Greg Ross … … 21 21 */ 22 22 23 define( 'SmartPrevNext', '1. 4' );23 define( 'SmartPrevNext', '1.5' ); 24 24 25 25 include_once( 'smart-prev-next-functions.php' ); -
smart-prev-next/trunk/readme.txt
r3186831 r3186838 7 7 Tested up to: 6.7 8 8 Requires PHP: 7.0 9 Stable tag: 1. 49 Stable tag: 1.5 10 10 License: GPLv2 11 11 … … 42 42 43 43 == Changelog == 44 = 1.5 = 45 * Release date: November 12, 2024 46 * More fixes for WP 6.7. 47 44 48 = 1.4 = 45 49 * Release date: November 12, 2024 -
smart-prev-next/trunk/smart-prev-next-functions.php
r3186831 r3186838 324 324 // Check to see which location we're placing the buttons. 325 325 // WP 6.1 changed the class for the settings box. 326 // WP 6.7 made more changes to the location 327 if( version_compare( $wp_version, '6.7' ) >= 0 ) { 328 $location = 'div .editor-preview-dropdown'; 329 } else if( version_compare( $wp_version, '6.1' ) < 0 ) { 326 if( version_compare( $wp_version, '6.1' ) < 0 ) { 330 327 $location = 'div .edit-post-header__settings'; 331 328 } else { … … 369 366 370 367 if( typeof pinned_items === 'object' ) { 371 pinned_items. before( '<?php echo $first_post_button . $previous_post_button . $next_post_button . $last_post_button; ?>' );368 pinned_items.prepend( '<?php echo $first_post_button . $previous_post_button . $next_post_button . $last_post_button; ?>' ); 372 369 } else { 373 370 setTimeout( 'SmartPrevNextAddPrevNext()', 250 ); -
smart-prev-next/trunk/smart-prev-next.php
r3186831 r3186838 2 2 /* 3 3 Plugin Name: Smart Prev Next 4 Version: 1. 44 Version: 1.5 5 5 Plugin URI: http://toolstack.com/smart-prev-next 6 6 Author: Greg Ross … … 21 21 */ 22 22 23 define( 'SmartPrevNext', '1. 4' );23 define( 'SmartPrevNext', '1.5' ); 24 24 25 25 include_once( 'smart-prev-next-functions.php' );
Note: See TracChangeset
for help on using the changeset viewer.