Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created March 25, 2014 19:45
Show Gist options
  • Save jbutko/9769752 to your computer and use it in GitHub Desktop.
Save jbutko/9769752 to your computer and use it in GitHub Desktop.
WP, CCPM: Nezobrazovanie prazdnych poli
<div class="entry-content">
<?php the_post_thumbnail(); ?>
<?php if (get_custom_field('subtitulo')):?>
<p class="evento-subtitulo"><?php print_custom_field('subtitulo'); ?></p>
<?php endif;?>
<?php if (get_custom_field('fecha_inicio')):?>
<p><strong>Fecha:</strong> <?php print_custom_field('fecha_inicio'); ?><?php echo get_custom_field('fecha_fin') ? ' hasta el '.get_custom_field('fecha_fin') :''; ?></p>
<?php endif;?>
<?php if (get_custom_field('lugar')):?>
<p><strong>Lugar:</strong> <?php print_custom_field('lugar'); ?></p>
<?php endif;?>
<?php if (get_custom_field('organizador')):?>
<p><strong>Organiza:</strong> <?php print_custom_field('organizador'); ?></p>
<?php endif;?>
<?php if (get_custom_field('descripcion')):?>
<?php print_custom_field('descripcion'); ?>
<?php endif;?>
<?php if (get_custom_field('enlace')):?>
<p><strong>Página Web:</strong> <strong><a href="http://<?php print_custom_field('enlace'); ?>"><?php print_custom_field('enlace'); ?></a></strong></p>
<?php endif;?>
<?php if (get_custom_field('imagen')):?>
<p class="evento-imagen"><?php print_custom_field('imagen'); ?></p>
<?php endif;?>
</div><!-- .entry-content -->
//From http://wordpress.org/support/topic/plugin-custom-content-type-manager-exclude-custom-field-when-there-is-no-value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment