How to display tag attribute “target” in the_author_meta( ‘description’ );

Seems no body has solution!

Well, I find out the solution by myself, I hope it will help some day somebody!

First of all you have to install wordpress plugin “Unlimited Contact Info” it will help you to add additional fields under user profile “contact info” after that add following code inside loop-single.php and author.php:

<?php if(get_the_author_meta('user_url')!='') { ?>
   <a href="https://wordpress.stackexchange.com/questions/33758/<?php the_author_meta("user_url'); ?>" target="_blank">Website</a>
<?php } ?>

Note: For each field to show you have to repeat above code.

The above mentioned solution is to show additional contact info / social network IDs (linked to their pages) for author of the post and link will be open in new window.