MAYALAND

Mayaland Homes is a residential enclave that invigorate a peaceful and tranquil community living. Discover convenient living. Our projects are stones away to major schools, malls, church, and public market.

Our projects are located at Santiago City, San Isidro, Alicia, and Echague Isabela.

Have any questions?

mayaland@dmaya.ph

<?php
function save_contact_button() {
    $contact_name = "John Doe";
    $contact_phone = "+1234567890";
    $button_text = "Save Contact";

    $link = 'tel:'.$contact_phone.'?contact-name='.urlencode($contact_name);

    $button_markup = '<a href="'.$link.'" class="save-contact-button">'.$button_text.'</a>';

    echo $button_markup;
}
add_shortcode('save_contact', 'save_contact_button');
?>