1function avf_alb_supported_post_types_mod( array $supported_post_types )
2{
3  $supported_post_types[] = 'YOUR CUSTOM POST NAME';
4  $supported_post_types[] = 'YOUR CUSTOM POST NAME';
5  return $supported_post_types;
6}
7add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);