A quick cool little way to add a link to your little login widget in wordpress.
/**
* Here is the link function
*/
function add_meta_link() {
echo '<li><a href="http://www.google.com/">Google</a></li>';
}
/** The action to call */
add_action('wp_meta', 'add_meta_link');
?>


