Remove Author from Post Meta
<?php
/**
* Remove Author from Post Meta
*/
add_filter('frameshift_do_post_meta', 'custom_do_post_meta');
function custom_do_post_meta($post_meta) {
$post_meta = '[post_date] ' . __( 'in', 'frameshift' ) . ' [post_categories] [post_edit before="- "]';
return $post_meta;
}