Body - Custom Post Meta (With Shortcodes)
<?php
// Do NOT include the opening php tag
add_filter( 'genesis_post_meta', 'child_post_meta_filter' );
/**
* Custom Post Meta with shortcodes.
*
* @author Greg Rickaby
* @since 1.0.0
*/
function child_post_meta_filter( $post_meta ) {
return '[post_categories] Tagged with [post_tags]';
}