Skip to content

Logged in and Logged out Shortcode for WordPress

//logged in shortcode
function check_user ($params, $content = null){
  //check tha the user is logged in
  if ( is_user_logged_in() ){
    //user is logged in so show the content
    return $content;
  } 
  else{
    //user is not logged in so hide the content
    return;
  }
}
add_shortcode('loggedin', 'check_user' );
 
//logged in shortcode
function check_user_out ($params, $content = null){
  //check tha the user is logged in
  if ( !is_user_logged_in() ){
    //user is logged in so show the content
    return $content;
  } 
  else{
    //user is not logged in so hide the content
    return;
  }
}
add_shortcode('loggedout', 'check_user_out' );

Dieser Beitrag hat 0 Kommentare

Schreibe einen Kommentar

Deine E-Mail wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

An den Anfang scrollen