我想申请以下2个案例:
我的代码:
function wpse_Nologin_redirect() {
if (
! is_user_logged_in()
&& (is_checkout())
) {
// feel free to customize the following line to suit your needs
$MyLoginURL = "http://example.in/my-account/";
wp_redirect($MyLoginURL);
exit;
}
}
add_action('template_redirect', 'wpse_Nologin_redirect');
Run Code Online (Sandbox Code Playgroud)
以上代码适用于我的第一个案例.但对于我的第二种情况,当我检查购物车时if ( sizeof( $woocommerce->cart->cart_contents ) == 0 ) {},我的网站停止工作.
我在我的主题的functions.php文件中添加了这段代码.
我做错了什么?