I am trying to put a link in the post meta with this code
$authorEmail = get_the_author_meta('user_email');
$authorEmailLink = '<a href ="mailto:'.$authorEmail.'">'.$authorEmail.'</a>';
add_post_meta($post->ID,'Author Email',$authorEmailLink,true);
The $authorEmailLink is a valid link because I can echo it to the page. However, when I put it on the page, it just displays the plain text email. Is there something I am not doing or a way to get around this?