What plugin you use for login topbar? in your web
Hi @chuki
Sorry, this ability is a options of AnswerBox theme and isn’t a plugin.
You can use several plugins that shared on WordPress.org instead of this feature.
But for adding a simple login-logout link on your nav-menu, you can simply add these codes in the end of functions.php file of your theme.
add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2); function add_login_logout_link($items, $args) { ob_start(); wp_loginout('index.php'); $loginoutlink = ob_get_contents(); ob_end_clean(); $items .= '
- ‘. $loginoutlink .’
'; return $items; }
Good luck.
UPDATED:
For a plugin, you can try (by 15$ ;-)) “Ajax Login/Registration Bar WordPress” on codecanyon.net. (but it is out of date).
/or “Admin Bar Login” on WordPress.org (if you allow admin bar for your users&viewers)
/or “WP Sliding Login/Dashboard Panel” on WordPress.org (this is sliding login form, try it!)
/or a lot of modal login form plugin on WordPress.org like “SimpleModal Login”
/or “Login With Ajax” for a nice login widget.
Good luck
Hi @chuki
I updated the answer, please try them.
Thanks!
Oh I tried that but I had that. I want the something how AnswerBox theme. Thanks! You know any plugin for do that?