我现在有类似......
<?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的任何地方:只是打破代码。
答案 0 :(得分:2)
替换
<a href="<?php echo $url; ?>">Email Organisation</a>
通过
<a href="mailto:<?php echo $url; ?>">Email Organisation</a>
它可能有用。