Changeset 3165840
- Timestamp:
- 10/09/2024 02:01:57 PM (15 months ago)
- Location:
- post-types-order
- Files:
-
- 30 added
- 3 edited
-
tags/2.3.2 (added)
-
tags/2.3.2/compatibility (added)
-
tags/2.3.2/compatibility/LiteSpeed_Cache.php (added)
-
tags/2.3.2/compatibility/formidable.php (added)
-
tags/2.3.2/compatibility/the-events-calendar.php (added)
-
tags/2.3.2/compatibility/themes (added)
-
tags/2.3.2/compatibility/themes/enfold.php (added)
-
tags/2.3.2/composer.json (added)
-
tags/2.3.2/composer.phar (added)
-
tags/2.3.2/css (added)
-
tags/2.3.2/css/cpt-archive-dd.css (added)
-
tags/2.3.2/css/cpt-options.css (added)
-
tags/2.3.2/css/cpt.css (added)
-
tags/2.3.2/images (added)
-
tags/2.3.2/images/menu-icon.png (added)
-
tags/2.3.2/include (added)
-
tags/2.3.2/include/class.compatibility.php (added)
-
tags/2.3.2/include/class.cpto.php (added)
-
tags/2.3.2/include/class.functions.php (added)
-
tags/2.3.2/include/class.options.php (added)
-
tags/2.3.2/include/class.walkers.php (added)
-
tags/2.3.2/js (added)
-
tags/2.3.2/js/cpt.js (added)
-
tags/2.3.2/languages (added)
-
tags/2.3.2/languages/post-types-order.mo (added)
-
tags/2.3.2/languages/post-types-order.po (added)
-
tags/2.3.2/post-types-order.php (added)
-
tags/2.3.2/readme.txt (added)
-
tags/2.3.2/screenshot-1.png (added)
-
tags/2.3.2/screenshot-2.png (added)
-
trunk/include/class.cpto.php (modified) (2 diffs)
-
trunk/post-types-order.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-types-order/trunk/include/class.cpto.php
r3165708 r3165840 268 268 function admin_options_print_styles() 269 269 { 270 wp_register_style('pto-options', CPTURL . '/css/cpt-options.css', array(), CPT_VERSION );270 wp_register_style('pto-options', CPTURL . '/css/cpt-options.css', array(), PTO_VERSION ); 271 271 wp_enqueue_style( 'pto-options'); 272 272 } … … 584 584 } 585 585 586 wp_register_style('CPTStyleSheets', CPTURL . '/css/cpt.css', array(), CPT_VERSION );586 wp_register_style('CPTStyleSheets', CPTURL . '/css/cpt.css', array(), PTO_VERSION ); 587 587 wp_enqueue_style( 'CPTStyleSheets'); 588 588 } -
post-types-order/trunk/post-types-order.php
r3165708 r3165840 6 6 * Author: Nsp Code 7 7 * Author URI: http://www.nsp-code.com 8 * Version: 2.3. 18 * Version: 2.3.2 9 9 * Text Domain: post-types-order 10 10 * Domain Path: /languages/ … … 14 14 define('CPTURL', plugins_url('', __FILE__)); 15 15 16 define(' CPT_VERSION', '2.3.1');16 define('PTO_VERSION', '2.3.2'); 17 17 18 18 include_once(CPTPATH . '/include/class.cpto.php'); -
post-types-order/trunk/readme.txt
r3165754 r3165840 5 5 Requires at least: 2.8 6 6 Tested up to: 6.6.2 7 Stable tag: 2.3. 17 Stable tag: 2.3.2 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 117 117 == Changelog == 118 118 119 = 2.3.2 = 120 - Fix: Change the CPT_VERSION constant to avoid conflict with CPT UI plugin. 121 119 122 = 2.3.1 = 120 123 - Improve the descriptions in the readme.txt file for better clarity and user understanding.
Note: See TracChangeset
for help on using the changeset viewer.