?
Current Path : /home1/savoy/sportsmeet.net/wp-content/plugins/jetpack/3rd-party/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/sportsmeet.net/wp-content/plugins/jetpack/3rd-party/beaverbuilder.php |
<?php /** * Beaverbuilder Compatibility. * * @package automattic/jetpack */ namespace Automattic\Jetpack\Third_Party; add_action( 'init', __NAMESPACE__ . '\beaverbuilder_refresh' ); /** * If masterbar module is active force BeaverBuilder to refresh when publishing a layout. */ function beaverbuilder_refresh() { if ( \Jetpack::is_module_active( 'masterbar' ) ) { add_filter( 'fl_builder_should_refresh_on_publish', '__return_true' ); } }