Thêm Thông Tin Liên Hệ Trong Portfolio Flatsome

add_action('flatsome_portfolio_after', 'uxf_portfolio_content');
function uxf_portfolio_content() {
    // Lấy thông tin liên hệ từ trường ACF hoặc hiển thị thông báo nếu không có dữ liệu
    $address = get_field('address') ?: 'Đang cập nhật';
    $phone = get_field('phone') ?: 'Đang cập nhật';
    $email = get_field('email') ?: 'Đang cập nhật';
    // Xuất thông tin liên hệ dưới dạng danh sách không số thứ tự
    echo '<ul class="is-small">
        <li><i class="icon-map-pin-fill" aria-hidden="true"></i> <span>' . esc_html($address) . '</span></li>
        <li><i class="icon-envelop" aria-hidden="true"></i> <span>' . esc_html($email) . '</span></li>
        <li><i class="icon-phone" aria-hidden="true"></i> <span>' . esc_html($phone) . '</span></li>
    </ul>';
}