I'm writing a plugin and am trying to figure out how to add data to the end of a post based on some Custom Meta Information.
So i've done this so far:
add_filter('the_content', 'AppendMeta');
And here is the "AppendMeta" function
AppendMeta($content) {
echo $content; // Echo out post content
$PersonName = get_post_meta($post->ID, 'PersonName', true);
echo 'Person: ' . $PersonName;
}
That code works if I replace $post->ID with the id of the post, but I need it to work based on the post the user is currently navigating. How would I pass the post id in as a parameter? $post->ID doesn't work in this scenario and I can't find out why.