Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created April 15, 2013 14:43
Show Gist options
  • Save LinzardMac/5388617 to your computer and use it in GitHub Desktop.
Save LinzardMac/5388617 to your computer and use it in GitHub Desktop.
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php $relatie = get_post_meta($post->ID, 'relatie.name', true);?>
<?php echo $relatie; ?>
<?php endwhile; ?>
<?php else : ?>
// Content when no loop content found
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment