回显外部链接 - 来自自定义字段的电子邮件(mailto :)

时间:2013-08-01 17:24:07

标签: php wordpress

我现在有类似......

<?php
    $url = get_post_meta( get_the_ID(), 'email_address', true);
    if (!empty($url))
    {
?>
<img src="/wp-content/themes/ibusiness/img/mail.png">
<a href="<?php echo $url; ?>">Email Organisation</a>
<p>'<?php
    }
?>

虽然这确实显示,因为我希望输出是附加到当前URL末尾的电子邮件地址的链接 - 在我尝试添加mailto的任何地方:只是打破代码。

1 个答案:

答案 0 :(得分:2)

替换

<a href="<?php echo $url; ?>">Email Organisation</a>

通过

<a href="mailto:<?php echo $url; ?>">Email Organisation</a>

它可能有用。