Directory

pre_redirect_guess_404_permalink – Hook | Developer.WordPress.org

apply_filters( ‘pre_redirect_guess_404_permalink’, null|string|false $pre )

In this article

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.

Parameters

$prenull|string|false
Whether to short-circuit guessing the redirect for a 404.
Default null to continue with the URL guessing.

Source

$pre = apply_filters( 'pre_redirect_guess_404_permalink', null );

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.