I have been using WPAlchemy for my custom meta boxes. I can usually get the meat box values to display using something like <?php $custom_mb->the_value('summary'); ?> but I am having trouble displaying the data in a genesis child theme. If use the above example I can get the post to display but it is at the very top of the page, even above the header. So I attempted to hook into the genesis_post_content hook using this
add_action('genesis_post_content', 'meta_content');
function meta_content() {
echo "Hello World";
}
I can echo Hello World this way but receive errors when trying the first example in the function. Any help would be greatly appreciated.