if user logged in wordpress
if ( is_user_logged_in() ) {
// your code for logged in user
} else {
// your code for logged out user
}
if user logged in wordpress
if ( is_user_logged_in() ) {
// your code for logged in user
} else {
// your code for logged out user
}
how to redirect from home page to custom link if not logged in in wordpress
add_action( 'admin_init', 'redirect_if_user_not_logged_in' );
function redirect_if_user_not_logged_in() {
if ( !is_user_logged_in() && is_page('slug') ) {
wp_redirect( 'http://your-redirect-page-here ');
exit;
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us