Skip to content

Instantly share code, notes, and snippets.

@billrobbins
Created January 12, 2012 16:37
Show Gist options
  • Select an option

  • Save billrobbins/1601495 to your computer and use it in GitHub Desktop.

Select an option

Save billrobbins/1601495 to your computer and use it in GitHub Desktop.
Long Form Sponsor Archive
<div class="staff-member clearfix">
<div class="staff-picture fade"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_post_thumbnail('staff-thumbnail'); ?></a></div>
<div class="staff-details clearfix">
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_content_limit(275, "Read More"); ?>
<p class="staff-contact">
<?php if(get_post_meta($post->ID, "website", $single = true) != ""){ ?>
<span class="website"><a href="<?php echo get_post_meta($post->ID, "website", TRUE); ?>">Visit <?php the_title(); ?>'s Website</a></span>
<?php } ?>
<?php if(get_post_meta($post->ID, "phone", $single = true) != ""){ ?>
<span class="phone"><?php echo get_post_meta($post->ID, "phone", TRUE); ?></span>
<?php } ?>
</p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment