Skip to content

Instantly share code, notes, and snippets.

@mattbanks
Created February 8, 2013 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattbanks/4741474 to your computer and use it in GitHub Desktop.
Save mattbanks/4741474 to your computer and use it in GitHub Desktop.
Pods 2.3a7 post_content filters
function mb_show_testimonial() {
global $post;
$portfolio = pods( 'portfolio', $post->ID );
?>
<div class="testimonial">
<?php echo $portfolio->display( 'testimonial' ); ?>
</div>
<p class="author"><?php echo $portfolio->display( 'testimonial_author' ); ?></p>
<div class="body-text">
<div class="entry-content">
<?php echo $portfolio->display( 'post_content' ); ?>
</div>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment