Sid Gifari File Manager
🏠 Root
/
home
/
nradmin
/
www
/
wp-content
/
themes
/
flatsome
/
inc
/
builder
/
core
/
server
/
helpers
/
📝 Editing: 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']; }
💾 Save
❌ Cancel
Sid Gifari File Manager v1.0 | Terminal Auto-Sync Enabled | Current Path: /home/nradmin/www/wp-content/themes/flatsome/inc/builder/core/server/helpers