Customize Post Meta Tweet this for all to see! Customize the post meta function of your site using the Genesis Framework: <?php // Customize the post meta function add_filter( 'genesis_post_meta', 'post_meta_filter' ); function post_meta_filter($post_meta) { $post_meta = '[post_categories before="Filed Under: "] [post_tags before="Tagged: "]'; return $post_meta; } // Remove the post meta function remove_action( 'genesis_after_post_content', 'genesis_post_meta' );