Changeset 3186831
- Timestamp:
- 11/13/2024 12:52:55 AM (17 months ago)
- Location:
- smart-prev-next
- Files:
-
- 8 edited
- 1 copied
-
tags/1.4 (copied) (copied from smart-prev-next/trunk)
-
tags/1.4/readme.txt (modified) (2 diffs)
-
tags/1.4/smart-prev-next-functions.php (modified) (1 diff)
-
tags/1.4/smart-prev-next.css (modified) (1 diff)
-
tags/1.4/smart-prev-next.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smart-prev-next-functions.php (modified) (1 diff)
-
trunk/smart-prev-next.css (modified) (1 diff)
-
trunk/smart-prev-next.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smart-prev-next/tags/1.4/readme.txt
r3124284 r3186831 5 5 Tags: admin editor prev next 6 6 Requires at least: 3.5 7 Tested up to: 6. 6.17 Tested up to: 6.7 8 8 Requires PHP: 7.0 9 Stable tag: 1. 39 Stable tag: 1.4 10 10 License: GPLv2 11 11 … … 42 42 43 43 == Changelog == 44 = 1.4 = 45 * Release date: November 12, 2024 46 * Add support for WP 6.7. 47 44 48 = 1.3 = 45 49 * Release date: July 23, 2024 -
smart-prev-next/tags/1.4/smart-prev-next-functions.php
r3124284 r3186831 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 if( version_compare( $wp_version, '6.1' ) < 0 ) { 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 ) { 327 330 $location = 'div .edit-post-header__settings'; 328 331 } else { -
smart-prev-next/tags/1.4/smart-prev-next.css
r2499051 r3186831 1 1 .spn-prev-post, .spn-next-post, .spn-first-post, .spn-last-post { 2 2 margin-right: 10px !important; 3 max-width: 50px; 3 4 } -
smart-prev-next/tags/1.4/smart-prev-next.php
r3124284 r3186831 2 2 /* 3 3 Plugin Name: Smart Prev Next 4 Version: 1. 34 Version: 1.4 5 5 Plugin URI: http://toolstack.com/smart-prev-next 6 6 Author: Greg Ross … … 21 21 */ 22 22 23 define( 'SmartPrevNext', '1. 3' );23 define( 'SmartPrevNext', '1.4' ); 24 24 25 25 include_once( 'smart-prev-next-functions.php' ); -
smart-prev-next/trunk/readme.txt
r3124284 r3186831 5 5 Tags: admin editor prev next 6 6 Requires at least: 3.5 7 Tested up to: 6. 6.17 Tested up to: 6.7 8 8 Requires PHP: 7.0 9 Stable tag: 1. 39 Stable tag: 1.4 10 10 License: GPLv2 11 11 … … 42 42 43 43 == Changelog == 44 = 1.4 = 45 * Release date: November 12, 2024 46 * Add support for WP 6.7. 47 44 48 = 1.3 = 45 49 * Release date: July 23, 2024 -
smart-prev-next/trunk/smart-prev-next-functions.php
r3124284 r3186831 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 if( version_compare( $wp_version, '6.1' ) < 0 ) { 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 ) { 327 330 $location = 'div .edit-post-header__settings'; 328 331 } else { -
smart-prev-next/trunk/smart-prev-next.css
r2499051 r3186831 1 1 .spn-prev-post, .spn-next-post, .spn-first-post, .spn-last-post { 2 2 margin-right: 10px !important; 3 max-width: 50px; 3 4 } -
smart-prev-next/trunk/smart-prev-next.php
r3124284 r3186831 2 2 /* 3 3 Plugin Name: Smart Prev Next 4 Version: 1. 34 Version: 1.4 5 5 Plugin URI: http://toolstack.com/smart-prev-next 6 6 Author: Greg Ross … … 21 21 */ 22 22 23 define( 'SmartPrevNext', '1. 3' );23 define( 'SmartPrevNext', '1.4' ); 24 24 25 25 include_once( 'smart-prev-next-functions.php' );
Note: See TracChangeset
for help on using the changeset viewer.