Needs different filter
-
Not sure if this plugin is maintained anymore, but the entire plugin is just one line of code:
add_filter( 'do_redirect_guess_404_permalink', '__return_false' );
This did not work for us with WP 6.1.x – instead we had to use this:
add_filter( 'pre_redirect_guess_404_permalink', '__return_false' );
If the plugin is no longer maintained… just add that line of code to your custom or child theme functions.php or to a custom plugin you maintain.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Needs different filter’ is closed to new replies.