Answers for "wordpress login logout button"

PHP
0

wordpress programmatically logout

wp_destroy_current_session();
wp_clear_auth_cookie();
wp_set_current_user( 0 );
Posted by: Guest on December-09-2020
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 logout

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

Browse Popular Code Answers by Language