apply_filters( 'do_redirect_guess_404_permalink', bool $do_redirect_guess )
- Since
- 5.5.0
Filters whether to attempt to guess a redirect URL for a 404 request.
Description
Returning a false value from the filter will disable the URL guessing and return early without performing a redirect.
Compatibility
- WordPress
- since 5.5.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$do_redirect_guessbool- Whether to attempt to guess a redirect URL for a 404 request. Default true.
Where this hook fires · 1
wp-includes/canonical.php:941redirect_guess_404_permalink()
Source code
* * @since 5.5.0 * * @param bool $do_redirect_guess Whether to attempt to guess a redirect URL * for a 404 request. Default true. */ if ( false === apply_filters( 'do_redirect_guess_404_permalink', true ) ) { return false; } /** * Short-circuits the redirect URL guessing for 404 requests. *Changelog
Introduced in 5.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.