WordPress -> 使用 WooCommerce 的电子商务网站
WordPress -> An e-commerce site using WooCommerce
我正在使用 WooCommerce 插件在 WordPress 中开发一个电子商务网站。默认情况下,用户被定向到我的帐户页面。在我的网站中,我想在登录后将用户重定向到主页。如何完成此重定向?
此代码应该可以解决您的 problem.You 可以在 functions.php 中添加此代码。
add_filter('woocommerce_login_redirect', 'user_redirection_page');
function user_redirection_page( $redirect_to ) {
return esc_url( home_url( '/' ) );
}
我正在使用 WooCommerce 插件在 WordPress 中开发一个电子商务网站。默认情况下,用户被定向到我的帐户页面。在我的网站中,我想在登录后将用户重定向到主页。如何完成此重定向?
此代码应该可以解决您的 problem.You 可以在 functions.php 中添加此代码。
add_filter('woocommerce_login_redirect', 'user_redirection_page');
function user_redirection_page( $redirect_to ) {
return esc_url( home_url( '/' ) );
}