putting Mailto: and Tel: into footer.php code wordpress

Can someone explain how I would rewrite this bit of code to include a tel: clickable phone number and make the email add

Can someone explain how I would rewrite this bit of code to include a tel: clickable phone number and make the email address clickable to info:hi

I am having a bit of trouble with this.

<address class="address_phone">
                                        <span class="icon icon-phone"></span>
                                        <div class="contact_title"><?php echo esc_html__('Phone:', 'yogastudio') ?></div>
                                        <span class="contact_item phone"><?php if (!empty($phone)) echo esc_html($phone); ?></span>
                                        </address></div><div class="column-1_3">
                                    <address class="address_email">
                                        <span class="icon icon-mail"></span>
                                        <div class="contact_title"><?php echo esc_html__('Email:', 'yogastudio') ?></div>
                                        <span class="contact_item mail"><?php if (!empty($email)) echo esc_html($email); ?></span>

                                    </address></div>

Can someone explain how I would rewrite this bit of code to include a tel: clickable phone number and make the email address clickable to info:hi

I am having a bit of trouble with this.

<address class="address_phone">
                                        <span class="icon icon-phone"></span>
                                        <div class="contact_title"><?php echo esc_html__('Phone:', 'yogastudio') ?></div>
                                        <span class="contact_item phone"><?php if (!empty($phone)) echo esc_html($phone); ?></span>
                                        </address></div><div class="column-1_3">
                                    <address class="address_email">
                                        <span class="icon icon-mail"></span>
                                        <div class="contact_title"><?php echo esc_html__('Email:', 'yogastudio') ?></div>
                                        <span class="contact_item mail"><?php if (!empty($email)) echo esc_html($email); ?></span>

                                    </address></div>
Share Improve this question asked Aug 30, 2019 at 13:45 user3504751user3504751 132 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 0

Please edit your code as below:

<address class="address_phone">
                                        <span class="icon icon-phone"></span>
                                        <div class="contact_title"><?php echo esc_html__('Phone:', 'yogastudio') ?></div>
                                        <span class="contact_item phone">
                                            <?php if (!empty($phone)) { echo '<a href="tel:'.$phone.'">'.esc_html($phone).'</a>';} ?>
                                        </span>
                                        </address></div><div class="column-1_3">
                                    <address class="address_email">
                                        <span class="icon icon-mail"></span>
                                        <div class="contact_title"><?php echo esc_html__('Email:', 'yogastudio') ?></div>
                                        <span class="contact_item mail"><?php if (!empty($email)) { echo '<a href="mailto:'.$email.'">'.esc_html($email).'</a>';}?></span>

                                    </address></div>

Remove.

<?php if (!empty($phone)) { echo '<a href="tel:'.$phone.'">'.esc_html($phone).'</a>';} ?>

Replace with

<a href="tel:+4401234567895">Call us</a>

Note you should include the International dial code as well.

For the email, replace

<?php if (!empty($email)) { echo '<a href="mailto:'.$email.'">'.esc_html($email).'</a>';}?>

With:

<a href="mailto:[email protected]">Email us</a>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745198819a4616224.html

相关推荐

  • putting Mailto: and Tel: into footer.php code wordpress

    Can someone explain how I would rewrite this bit of code to include a tel: clickable phone number and make the email add

    5小时前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信