Skip to content

Instantly share code, notes, and snippets.

@daronspence
Last active August 29, 2015 14:25
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 daronspence/bb24086c10a739ffd239 to your computer and use it in GitHub Desktop.
Save daronspence/bb24086c10a739ffd239 to your computer and use it in GitHub Desktop.
Rendering post meta from a plugin.
<?php
add_filter( 'the_content', function( $content ){
$extra_content = get_post_meta( 'extra_content', $post->ID );
if ( ! empty($extra_content ) )
return $content . $extra_content ;
else
return $content;
}, 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment