?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/portfolio/templates/single/parts/



?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/portfolio/templates/single

?? Viewing: custom-fields.php

<?php
$custom_fields = get_post_meta(get_the_ID(), 'edgt_portfolios', true);

if(is_array($custom_fields) && count($custom_fields)) :
    usort($custom_fields, 'edgtf_quadric_compare_portfolio_options');

    foreach($custom_fields as $custom_field) : ?>
        <div class="edgtf-portfolio-info-item edgtf-portfolio-custom-field">
            <?php if(!empty($custom_field['optionLabel'])) : ?>
                <span class="edgtf-portfolio-info-title"><i class="icon-badge"></i><?php echo esc_html($custom_field['optionLabel']); ?></span>
            <?php endif; ?>
            <p>
                <?php if(!empty($custom_field['optionUrl'])) : ?>
                <a href="<?php echo esc_url($custom_field['optionUrl']); ?>">
                    <?php endif; ?>
                    <?php echo esc_html($custom_field['optionValue']); ?>
                    <?php if(!empty($custom_field['optionUrl'])) : ?>
                </a>
            <?php endif; ?>
            </p>
        </div>
    <?php endforeach; ?>

<?php endif; ?>


??

??