美好的一天!
我想让我的.fa .fa-phone可以单击以拨打电话,但是我不确定。这是我第一次使用php。我会很感激的。这是我正在使用的代码。
<?php if (!empty($agent_mobile_number)): ?>
<a title="Mobile Number" href="<?php echo esc_url($agent_mobile_number); ?>?call">
<i class="fa fa-phone"></i>
</a>
<?php endif; ?>
答案 0 :(得分:0)
请尝试
当我们想通过国际中继拨号时(假设您的手机号码和国家代码一起保存了...)
<?php if (!empty($agent_mobile_number)): ?>
<a title="Mobile Number" href="tel:+<?php echo esc_url($agent_mobile_number); ?>">
<i class="fa fa-phone"></i>
</a>
<?php endif; ?>
如果要与您的国家/地区拨号
<?php if (!empty($agent_mobile_number)): ?>
<a title="Mobile Number" href="tel:00<?php echo esc_url($agent_mobile_number); ?>">
<i class="fa fa-phone"></i>
</a>
<?php endif; ?>
答案 1 :(得分:0)
您几乎在那儿,只需要将tel:添加到具有电话号码的href中即可。
<a href="tel:<?= esc_url($agent_mobile_number) ?>">Call Me!</a>