apply_filters( 'pre_redirect_guess_404_permalink', null|string|false $pre )
- Since
- 5.5.0
Short-circuits the redirect URL guessing for 404 requests.
Description
Returning a non-null value from the filter will effectively short-circuit the URL guessing, returning the passed value instead.
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
$prenull|string|false- Whether to short-circuit guessing the redirect for a 404.
Default null to continue with the URL guessing.
Where this hook fires · 1
wp-includes/canonical.php:947redirect_guess_404_permalink()
Source code
* * @since 5.5.0 * * @param null|string|false $pre Whether to short-circuit guessing the redirect for a 404. * Default null to continue with the URL guessing. */ $pre = apply_filters( 'pre_redirect_guess_404_permalink', null ); if ( null !== $pre ) { return $pre; } if ( get_query_var( 'name' ) ) { $publicly_viewable_statuses = array_filter( get_post_stati(), 'is_post_status_viewable' );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 6.8.8 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.