If you want it to run as early as possible, which makes sense if you want to avoid loading unnecessary assets, put the code in a function in a Must Use Plugin, and hook that function to the muplugins_loaded
action.
<?php
add_action( 'muplugins_loaded', 'wpd_my_redirector' );
function wpd_my_redirector() {
// your code here
// wp_redirect is not defined this early, so we use php's header
if( $somecondition === true ){
header( 'Location: ' . home_url( '/your-local-page/' ) );
exit;
}
}
Related Posts:
- How do I make a redirect in PHP?
- PHP – redirect https to http and www to non-www
- Redirect to Page after Post Submit
- How to redirect users to custom lostpassword page?
- Insert code when users come from an specific referer
- How to turn off redirection from ‘domain.com/login’ to ‘domain.com/wp-login.php’
- Is Auto Post recognition a WordPress feature? How to turn it off?
- WordPress template_include filter not working properly
- Logout and redirect using the WP Menu
- Change links automatically to affiliate links
- PHP If user is logged in & on home page redirect
- Woocommerce redirect thankyou page based on product ID doesn’t empty Cart
- WordPress does not load page.php, return 404.php
- 3 blogs same installation, without WP MU
- WordPress homepage infinite redirect
- Redirect undesirable domain
- How do I display the main domain for my WordPress install?
- Problem with login form
- Set Cache-Control header for 301 redirects
- How to redirect users based on role and content of redirect_to?
- Moving code from theme header to functions.php
- Showing latest post without 301 redirect
- Having Issue on Redirecting With Session in WordPress
- Using a $GET parameter from a URL, to redirect to a URL (WordPress)
- WordPress redirect redirecting too many times or not at all
- Using Argument from Function to Re-Direct Visitor (WordPress)
- I am receiving a pluggable.php warning sign on my only http:// page
- Login redirect. Check user meta and redirect accordingly
- Where to insert redirect code based on http_referer?
- Is this a correct usage of ob_start() in my WordPress project?
- How to allow download url redirection only if user logged in WordPress site?
- Manually Create PHP Page For A Redirect
- Redirect to current user page upon link click
- Ajax URLs without #!, how to prevent falling into single.php on load or reload?
- Writing a link cloaking plugin
- WordPress permalink issue
- WP insert post Redirect after function has executed
- How to redirect non logged in mobile users to page on same site?
- How to define a rule in functions.php that ONLY disables the default wp functionality that undesirably changes ‘&’ to ‘#038;’?
- Download file and redirect to page or vice versa
- Add more user roles to a PHP logout redirect function [closed]
- 404 on old link after changing post url
- WordPress url By country code?
- how can i redirect dynamic URL in worpress base on ID in htaccess or wp-config or function.php
- Implementing a multilingual WordPress site by installing several instances of WordPress and redirecting
- WordPress on Ubuntu – “File not Found” for home.php – Trying to Redirect to Root Folder
- Remove all feeds and return custom 404 page
- Infinite loop when logging out using custom login form
- Redirect User when they click Menu Option
- WordPress: Redirect Main Site to Subsite in Multisite Where user is NOT logged in
- Need help with AJAX login to call php in functions.php to handle redirects based on user cap (role)
- wp-login.php?redirect_to=https problem
- ERR_TOO_MANY_REDIRECTS / To Force SSL Logins and SSL Admin Access
- WordPress Redirect / Add_Rewrite_Rule – Non Index.php Page
- Override 404 when navigating to single php file
- Submit to itself don’t work
- redirect 301 with special character like WIX site “#!”
- 301 redirect from webpage to wordpress page in the same root
- Submitting my form to the database and then redirecting to payment site
- 3 domains, 1 wordpress install, redirecting and changing domains on live site
- Get permalink for a post from inside WordPress and route to a related site
- Redirect users not logged in to the standard login page (and back) from some posts and pages
- Link to external page has wordpress blog-url inside
- How to use multiple 404 Error Pages in WordPress
- How to create a WordPress PAGE in another folder?
- index.php file keeps redirecting to a non-existent index.html file?
- Redirect loop upon installation of my plugin
- wp_login_url always redirects me to wp-admin
- How to use nonce with front end submission form?
- How to export/import theme customizer settings?
- Drop down+sort blog posts date added/most popular
- Why can’t I use “%s” format value in the WordPress function checked?
- Help with some php math in WordPress
- max_input_vars: how many am I using?
- Multiple WordPress Menus that will only display all pages
- How to make drop down post title
- WordPress, AJAX and pre_get_posts using conditional tags
- Download full html page with CSV export plugin
- Is it bad to add html to a widget by closing and reopening the php tags?
- how to disabled a button when press three times
- My jQuery Ajax form submit is still refreshing page?
- Illegal string offset error in wordpress theme options textarea
- Using Custom Value Options in PHP
- Additional file upload in Gutenberg page options/featured image
- Add css class to string
- Dropdown Category form. Only show Sub-Categories
- Display all categories including sub categories under a list ul
- WP Hook Before a post is created
- Efficient way of querying for a “fallback” post?
- Shortcode in a $output statement
- Archive page if else not working for post_excerpt and post_content
- add bootstrap modal after login in wordpress
- syntax error unexpected ‘}’ at 364 line
- get_post_meta no longer working
- How to use plugins_url() inside PHP stylesheet file [duplicate]
- PHP warning Invalid argument supplied for foreach() on custom page template
- Assign new post author IF another user in custom field on post transition
- Create and publish a new post every Monday, listing the post titles and links to the posts published during the previous week
- advanced custom fields: repeater field within conditional statement [closed]
- How to pass value to add_filter wpcf7_form_tag from another function?