Add logout link to WordPress admin dashboard left sidebar menu
问题 I want to add logout link(button) in the left side of my wordpress admin dashboard. Like on the picture.. How can I do it? 回答1: UPDATED You can achive this using admin_init action hook and global $menu . Here is this code: add_action('admin_init', 'text_domain_logout_link'); function text_domain_logout_link() { global $menu; $menu[9999] = array(__('Logout'), 'manage_options', wp_logout_url()); } This code goes in function.php file of your active child theme (or theme) or also in any plugin