File: /home/hcb48/public_html/wp-content/themes/flatsome/inc/builder/core/server/helpers/posts.php
<?php
$GLOBALS['_ux_builder_post_types'] = array();
/**
* @param string $type
*/
function add_ux_builder_post_type( $type ) {
$GLOBALS['_ux_builder_post_types'][$type] = true;
}
/**
* @param string $type
*/
function remove_ux_builder_post_type( $type ) {
if ( isset( $GLOBALS['_ux_builder_post_types'][$type] ) ) {
unset( $GLOBALS['_ux_builder_post_types'][$type] );
}
}
/**
*
*/
function get_ux_builder_post_types() {
return $GLOBALS['_ux_builder_post_types'];
}