apply_filters( ‘do_redirect_guess_404_permalink’, bool $do_redirect_guess )

In this article

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.

Parameters

$do_redirect_guessbool
Whether to attempt to guess a redirect URL for a 404 request. Default true.

Source

if ( false === apply_filters( 'do_redirect_guess_404_permalink', true ) ) {

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

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