Customize Post Info Tweet this for all to see! Customize the post info function of your site using the Genesis Framework: <?php // Customize the post info function add_filter( 'genesis_post_info', 'post_info_filter' ); function post_info_filter($post_info) { $post_info = '[post_date] by [post_author_posts_link] [post_comments] [post_edit]'; return $post_info; } // Remove the post info function remove_action( 'genesis_before_post_content', 'genesis_post_info' );