Last active
April 17, 2021 17:44
-
-
Save cubehrends/14755e5de6b9e7fcf2e2d268a032c264 to your computer and use it in GitHub Desktop.
Redirect Folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function wdt_redirect_brand() { | |
| $uri = $_SERVER['REQUEST_URI']; | |
| if( !is_user_logged_in() ) { | |
| if ( strpos( $uri, '/brand/') === 0 ) { | |
| $r301 = str_replace( '/brand/', '/marke/', $uri ); | |
| if ( wp_safe_redirect( $r301, 301, 'webdevtrust') ) { die; } | |
| } | |
| } | |
| } | |
| add_action('template_redirect', 'wdt_redirect_brand'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment