Custom Post Types

Does BeBuilder work with custom post types? I currently use CubeWP and have two custom post types that I'd like to design for, however, when I try to do so, it simply reverts to pulling from the blog instead of the custom post type. Any tips or suggestions? Thanks! =)

Comments

  • Hi,

    You must add a filter to the child theme to allow these custom post types to be edited with BeBuilder.

    The filter is the following:

    // add in child theme functions.php
    
    add_filter('bebuilder_post_types','my_post_types');
    
    function my_post_types($post_types){
    	$post_types[] = 'my-custom-post-type';
    	return $post_types;
    }
    

    Best regards

Sign In or Register to comment.