Changeset 3354295
- Timestamp:
- 09/02/2025 12:16:16 AM (7 months ago)
- Location:
- lyxity/trunk
- Files:
-
- 2 edited
-
lyxity.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lyxity/trunk/lyxity.php
r3350309 r3354295 3 3 Plugin Name: Lyxity 4 4 Description: The art of modern search engine optimization 5 Version: 1. 7.05 Version: 1.8.0 6 6 Author: Infoforte 7 7 Author URI: https://infoforte.com … … 20 20 21 21 // Define plugin constants 22 define('LYXITY_VERSION', '1. 7.0');22 define('LYXITY_VERSION', '1.8.0'); 23 23 define('LYXITY_FILE', __FILE__); 24 24 define('LYXITY_PATH', plugin_dir_path(__FILE__)); … … 842 842 array( 843 843 'column' => 'post_modified', // Specify we want to query the modified date 844 'before' => gmdate('Y-m-d H:i:s', strtotime('-' . intval($input_days) . ' days')),845 'inclusive' => false, // Changed to false to exclude posts modified on the cutoff date844 'before' => date('Y-m-d H:i:s', strtotime('-' . intval($input_days) . ' days', current_time('timestamp'))), 845 'inclusive' => intval($input_days) === 0 ? true : false, // Include posts when days=0 to show recent content 846 846 ), 847 847 ), -
lyxity/trunk/readme.txt
r3350309 r3354295 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 1. 7.06 Stable tag: 1.8.0 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 113 113 114 114 == Changelog == 115 = 1.8.0 = 116 - Bug fixes and other improvements 117 115 118 = 1.7.0 = 116 119 - Bug fixes and other improvements
Note: See TracChangeset
for help on using the changeset viewer.