Skip to content

Instantly share code, notes, and snippets.

@cubehrends
Last active April 17, 2021 17:44
Show Gist options
  • Select an option

  • Save cubehrends/14755e5de6b9e7fcf2e2d268a032c264 to your computer and use it in GitHub Desktop.

Select an option

Save cubehrends/14755e5de6b9e7fcf2e2d268a032c264 to your computer and use it in GitHub Desktop.
Redirect Folder
<?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