Created
January 12, 2012 16:37
-
-
Save billrobbins/1601495 to your computer and use it in GitHub Desktop.
Long Form Sponsor Archive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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