This filter allows you to tell the entry meta to display on your custom post types. By default, it only shows for post
add_filter( 'generate_entry_meta_post_types', function( $types ) {
$types[] = 'my-post-type';
$types[] = 'recipes';
return $types;
} );