add_action('template_redirect', function () {
// Check if the current user is not an admin
if (!current_user_can('administrator')) {
// Get the current requested URL path
$request_uri = trim(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH), '/');
// Define the paths to redirect
$redirect_paths = [
'kontakt',
'om-oss',
'mitt-konto',
];
// Check if the requested path matches any of the defined paths or their subpaths
foreach ($redirect_paths as $path) {
if (strpos($request_uri, $path) === 0) {
// Perform a temporary redirect (302)
wp_redirect('https://mindoman.se/lank-till-ny-sida/', 302);
exit;
}
}
}
});
Författare: Erik
Erik har jobbat med webb professionellt sedan 2008. Från 2005 till 2008 studerades webb på ING/JTH och dessförinnan skapades webb på all fritid. Första sajten byggdes någon gång mellan 1996-1998.
Visa alla inlägg av Erik