@antipole
Active 2 hours, 8 minutes ago
-
Henry Wright replied to the topic [Resolved] Redirecting Register link in the forum How-to & Troubleshooting 9 years, 7 months ago
Hi @antipole
This is the kind of thing you’ll want to do. The
my_redirect()
function hooks totemplate_redirect
sobp_core_redirect()
executes at exactly the right time you need it to.You’d put it in your theme’s functions.php file.
function my_redirect() {
// Conditions go here.
$location = 'http://example.com';…[Read more]