Answers for "wordpress logout button"

PHP
1

wp wordpress logout

<a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="Logout">Logout</a>
Posted by: Guest on June-30-2021
0

how to create a logout button in wordpress

<?php if (is_user_logged_in()) : ?>
    <a href="<?php echo wp_logout_url(get_permalink()); ?>">Logout</a>
<?php endif;?>
Posted by: Guest on November-27-2020
0

wordpress wp_logout_url redirect

add_action('wp_logout','auto_redirect_after_logout');

function auto_redirect_after_logout(){
  wp_safe_redirect( home_url() );
  exit;
}
Posted by: Guest on May-04-2020
0

wordpress logout

wp_logout()
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language