AI Verified

Name

Redirect page to other page

About

Redirect one page to another

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

exemplos

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

Website/ Profile URL:

https://tecladigital.pt

Snippet Source:

https://tecladigital.pt

History

Last modified:

25/03/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Redirect page to other page

 
                    
1function quadlayers_redirect() {
2 
3if (isset($_SERVER['HTTPS']) &&
4($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] == 1) ||
5isset($_SERVER['HTTP_X_FORWARDED_PROTO']) &&
6$_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') {
7$protocol = 'https://';
8}
9else {
10$protocol = 'http://';
11}
12$currenturl = $protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
13$currenturl_relative = wp_make_link_relative($currenturl);
14 
15switch ($currenturl_relative) {
16 
17case '/page-to-redirect/': // slug page to redirect
18$urlto = home_url('/newpage-slug-here/'); // the slug to redirect
19break;
20 
21default:
22return;
23 
24}
25 
26if ($currenturl != $urlto)
27exit( wp_redirect( $urlto ) );
28}
29add_action( 'template_redirect', 'quadlayers_redirect' );

0

Related Snippets

Please see some snippets below related to this snippet..

General

Unverified

0

Image Comparison slider

Added: 4 months ago

Last Updated: 2 weeks ago

Add this to an HTML Widget to enable an Image Comparison WordPress feature, and replace the items inside with your image URLs; Source for different img comparison sliders:  https://img-comparison-s...

General

Unverified

0

CountDown Timer

Added: 1 year ago

Last Updated: 1 year ago

This is a JavaScript function that creates a countdown timer for a web page using data attributes and local storage.

General

Unverified

0

Mobilename

Added: 2 months ago

Last Updated: 2 months ago

asdds

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WordPress Admin

AI Verified

3

Remove menus from dashboard for non Admin users

Added: 1 year ago

Last Updated: 1 day ago

This snippets allow you to hide dashboards menus for non-admin users.

WordPress Admin

AI Verified

0

remove options menu e snipettcode menu

Added: 1 year ago

Last Updated: 1 year ago

remove the options and code snippets menu for non-admin users if they have "manage_options" capability.

WordPress Admin

AI Verified

0

Give editors access to manage options (to access some plugins)

Added: 1 year ago

Last Updated: 1 year ago

it give the editor role the manage_options capability in some cases it is necessary to access some plugins.