How to Add A Link To Your Meta Widget

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');
?>

This entry was posted in Code, Wordpress. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>