wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
maybe_redirect_404 › WordPress Function
Seit
Veraltetn/v
› maybe_redirect_404 ( Keine Parameter )
Definiert in: |
|
Codex: | |
Changelog: |
|
Corrects 404 redirects when NOBLOGREDIRECT is defined.
Ähnliche Funktionen: auth_redirect, wp_safe_redirect, is_redirect, wp_redirect, wp_validate_redirect
Quellcode
function maybe_redirect_404() { if ( is_main_site() && is_404() && defined( 'NOBLOGREDIRECT' ) ) { /** * Filters the redirect URL for 404s on the main site. * * The filter is only evaluated if the NOBLOGREDIRECT constant is defined. * * @since 3.0.0 * * @param string $no_blog_redirect The redirect URL defined in NOBLOGREDIRECT. */ $destination = apply_filters( 'blog_redirect_404', NOBLOGREDIRECT ); if ( $destination ) { if ( '%siteurl%' === $destination ) { $destination = network_home_url(); } wp_redirect( $destination ); exit; } } }