Ejemplo n.º 1
0
<?php

$additional = get_post_meta($post->ID, '_ebor_meta_repeat_group', true);
?>

<ul class="item-details">
	<?php 
if (get_post_meta($post->ID, '_ebor_the_client_date', true) && get_option('portfolio_date', '1') == 1) {
    echo '<li><span>' . __('Date', 'loom') . ':</span> ' . get_post_meta($post->ID, '_ebor_the_client_date', true) . '</li>';
}
if (ebor_the_simple_terms() && get_option('portfolio_categories', '1') == 1) {
    echo '<li><span>' . __('Categories', 'loom') . ':</span> ' . ebor_the_simple_terms() . '</li>';
}
if (get_post_meta($post->ID, '_ebor_the_client', true) && get_option('portfolio_client', '1') == 1) {
    echo '<li><span>' . __('Client', 'loom') . ':</span> ' . get_post_meta($post->ID, '_ebor_the_client', true) . '</li>';
}
if (get_post_meta($post->ID, '_ebor_the_client_url', true) && get_option('portfolio_url', '1') == 1) {
    echo '<li><span>' . __('URL', 'loom') . ':</span> <a href="' . esc_url(get_post_meta($post->ID, '_ebor_the_client_url', true)) . '" target="_blank">' . esc_url(get_post_meta($post->ID, '_ebor_the_client_url', true)) . '</a></li>';
}
if ($additional) {
    foreach ($additional as $index => $item) {
        echo '<li><span>';
        if (isset($item['_ebor_the_additional_title'])) {
            echo $item['_ebor_the_additional_title'];
        }
        echo ':</span> ';
        if (isset($item['_ebor_the_additional_detail'])) {
            echo $item['_ebor_the_additional_detail'];
        }
        echo '</li>';
    }
<li <?php 
post_class('item overlay thumb ' . ebor_the_isotope_terms());
?>
>
    <a href="<?php 
the_permalink();
?>
" data-contenturl="<?php 
the_permalink();
?>
" data-callback="callPortfolioScripts();" data-contentcontainer=".pcw">
    	<?php 
the_post_thumbnail('portfolio-index');
?>
    	<div>
    		<h5>
	    		<?php 
the_title();
if (get_option('portfolio_index_categories', '1') == 1) {
    echo '<span>' . ebor_the_simple_terms() . '</span>';
}
if (get_option('preview_name', '0') == 1) {
    echo '<span>' . get_post_meta($post->ID, '_cmb_the_client', true) . '</span>';
}
?>
    		</h5>
    	</div>
    </a>
</li>
Ejemplo n.º 3
0
function ebor_portfolio_meta_markup()
{
    global $post;
    echo '<ul class="nobullets item-details">';
    if (get_post_meta($post->ID, '_cmb_the_client_date', true) && get_option('portfolio_date', '1') == 1) {
        echo '<li><span>' . __('Date', 'marble') . ':</span> ' . get_post_meta($post->ID, '_cmb_the_client_date', true) . '</li>';
    }
    if (ebor_the_simple_terms() && get_option('portfolio_categories', '1') == 1) {
        echo '<li><span>' . __('Categories', 'marble') . ':</span> ' . ebor_the_simple_terms() . '</li>';
    }
    if (get_post_meta($post->ID, '_cmb_the_client', true) && get_option('portfolio_client', '1') == 1) {
        echo '<li><span>' . __('Client', 'marble') . ':</span> ' . get_post_meta($post->ID, '_cmb_the_client', true) . '</li>';
    }
    if (get_post_meta($post->ID, '_cmb_the_client_url', true) && get_option('portfolio_url', '1') == 1) {
        echo '<li><span>' . __('URL', 'marble') . ':</span> <a href="' . esc_url(get_post_meta($post->ID, '_cmb_the_client_url', true)) . '" target="_blank">' . esc_url(get_post_meta($post->ID, '_cmb_the_client_url', true)) . '</a></li>';
    }
    $titles = get_post_meta($post->ID, '_cmb_the_additional_title', true);
    $details = get_post_meta($post->ID, '_cmb_the_additional_detail', true);
    if ($titles) {
        foreach ($titles as $index => $title) {
            echo '<li><span>' . $title . ':</span> ' . $details[$index] . '</li>';
        }
    }
    echo '</ul>';
}