27 May 2020

How to create custom wordpress logout button(wp_logout_url) in wordpress?

custom wordpress logout button(wp_logout_url) in wordpress




<li class="menu-logout"><a href="<?php echo wp_logout_url(); ?>"><span><i class="fa fa-sign-out"></i></span>Logout</a></li>




Or


<li class="signOut"><?php wp_logout(); ?></li>

add_action( 'wp_logout', 'auto_redirect_external_after_logout');
function auto_redirect_external_after_logout(){
  wp_redirect( 'http://redirect-url' );
  exit();
}



No comments:

Post a Comment

How to create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...