Changeset 3400170
- Timestamp:
- 11/21/2025 04:49:57 AM (4 months ago)
- Location:
- wp-404-auto-redirect-to-similar-post/trunk
- Files:
-
- 4 edited
-
class/class-settings.php (modified) (1 diff)
-
includes/admin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-404-auto-redirect-similar-post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-404-auto-redirect-to-similar-post/trunk/class/class-settings.php
r3031134 r3400170 80 80 $settings['fallback']['url'] = esc_url($settings['fallback']['url']); 81 81 82 // Esc Priority 83 $settings['priority'] = (int) $settings['priority']; 84 82 85 // Headers 83 86 if(((int)$settings['method'] != 301) && ((int)$settings['method'] != 302)){ -
wp-404-auto-redirect-to-similar-post/trunk/includes/admin.php
r3031134 r3400170 65 65 66 66 $settings['fallback']['url'] = sanitize_url($settings['fallback']['url']); 67 $settings['priority'] = (int) $settings['priority']; 67 68 68 69 return $settings; -
wp-404-auto-redirect-to-similar-post/trunk/readme.txt
r3073450 r3400170 4 4 Tags: SEO, 404, Redirect, 301, Similar, Related, Search, Broken Link, Webmaster Tools, Google 5 5 Requires at least: 4.0 6 Tested up to: 6. 56 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 1.0. 58 Stable tag: 1.0.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 379 379 == Changelog == 380 380 381 = 1.0.6 = 382 * Fix: Escaping priority value in settings 383 * Fix: PHP 8.3 deprecated creation of dynamic property 384 * General: Bumped WordPress version to 6.8 385 381 386 = 1.0.5 = 382 387 * Fix: Escaping URL in Debug Console -
wp-404-auto-redirect-to-similar-post/trunk/wp-404-auto-redirect-similar-post.php
r3073450 r3400170 3 3 * Plugin Name: WP 404 Auto Redirect to Similar Post 4 4 * Description: Automatically Redirect any 404 page to a Similar Post based on the Title, Post Type & Taxonomy using 301 Redirects! 5 * Version: 1.0. 55 * Version: 1.0.6 6 6 * Author: hwk-fr 7 7 * Author URI: https://hwk.fr … … 36 36 Use WP_404_Auto_Redirect_Ajax; 37 37 Use WP_404_Auto_Redirect_Debug; 38 39 var $engines; 40 var $groups; 41 var $search; 42 var $settings; 43 44 45 /** 46 * construct 47 */ 48 function __construct(){ 49 // ... 50 } 38 51 39 52
Note: See TracChangeset
for help on using the changeset viewer.