D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
stickain
/
davidsteele.com
/
wp-content
/
themes
/
flatsome
/
inc
/
builder
/
core
/
server
/
helpers
/
Filename :
posts.php
back
Copy
<?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']; }