advanaced layout builder enfold custom post type

Solutions on MaxInterview for advanaced layout builder enfold custom post type by the best coders in the world

showing results for - "advanaced layout builder enfold custom post type"
Chevy
03 Jun 2019
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);
similar questions