Redirect URL while building site
Let me write a plugin for this (save as wp-content/plugins/red_visitors.php): <?php /** * Plugin Name: Redirect visitors * Plugin URI: http://wordpress.stackexchange.com/questions/138519 * Author: still_learning */ // function based on http://stackoverflow.com/a/5892694/2948765 // I hope it still works function __is_login_page() { return in_array($GLOBALS[‘pagenow’], array(‘wp-login.php’, ‘wp-register.php’)); } // When WP is ready… add_action(‘init’, function() { // Check what … Read more