kollapsminoriteten/wp-content/plugins/jetpack/3rd-party/beaverbuilder.php

22 lines
477 B
PHP
Raw Normal View History

2019-11-15 23:26:29 +01:00
<?php
/**
* Beaverbuilder Compatibility.
2021-04-27 08:32:47 +02:00
*
* @package automattic/jetpack
2019-11-15 23:26:29 +01:00
*/
2021-04-27 08:32:47 +02:00
namespace Automattic\Jetpack\Third_Party;
2025-02-28 08:42:11 +01:00
use Automattic\Jetpack\Status\Host;
2021-04-27 08:32:47 +02:00
add_action( 'init', __NAMESPACE__ . '\beaverbuilder_refresh' );
2019-11-15 23:26:29 +01:00
2021-04-27 08:32:47 +02:00
/**
* If masterbar module is active force BeaverBuilder to refresh when publishing a layout.
*/
function beaverbuilder_refresh() {
2025-02-28 08:42:11 +01:00
if ( ( new Host() )->is_woa_site() ) {
2021-04-27 08:32:47 +02:00
add_filter( 'fl_builder_should_refresh_on_publish', '__return_true' );
2019-11-15 23:26:29 +01:00
}
}