ID, $authordata->user_nicename );
$hidden_div = '
closeAuthor: '.get_the_author().'
Name: '.get_the_author_firstname().' '.get_the_author_lastname().'
Email: '.get_the_author_email().'
Site: '.get_the_author_url().'
About: '.get_the_author_description().'See Authors Posts ('.get_the_author_posts().')';
// Show it
echo (''.$nick.''.$hidden_div);
}
// Hook
add_filter('the_author_posts_link', 'author_exposed');
// Add JavaScript and Styles to header
add_action('wp_head', 'add_head');
function add_head() {
echo '';
}
?>