A clean AJAX-based login, registration and lost password retrieval widget.
ajax-login-widget folder to your wp-content/plugins/ folder.3a) If you are using the dynamic sidebar, you can add the AJAX Login Widget++ widget using the widgets administration menu.
3b) Add it to one of your theme's template with the PHP call "add_ajax_login_widget()" - see below for an example.
Example: Adding AJAX Login Widget++ to your theme's sidebar.php template page:
Open wp-content/themes/your-theme-name/sidebar.php
Look for "wp_register()" and "wp_loginout()". It probably looks like this:
<!-- meta -->
<div class="widget">
<h3>Meta</h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
</ul>
</div>
Replace the section with those two function calls with a call to add_ajax_login_widget, so it now looks like this:
<!-- meta -->
<div class="widget">
<?php add_ajax_login_widget(); ?>
</div>
Requires: 2.7 or higher
Compatible up to: 2.7.1
Last Updated: 2009-2-23
Downloads: 46,645
Got something to say? Need help?