mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
15 lines
328 B
Text
15 lines
328 B
Text
add_action('template_redirect','check_if_logged_in');
|
|
function check_if_logged_in()
|
|
{
|
|
|
|
if(!is_user_logged_in() && is_checkout())
|
|
{
|
|
$url = add_query_arg(
|
|
'redirect_to',
|
|
get_permalink($pagid),
|
|
site_url('/my-account/')
|
|
);
|
|
wp_redirect($url);
|
|
exit;
|
|
}
|
|
}
|