Advertisement
DidouS

toolbox customizer clear bb cache

Apr 27th, 2020
603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1.  
  2. add_action( 'toolbox_customizer_on_publish' , 'clear_beaverbuilder_asset_cache' );
  3.  
  4. /**
  5.  * action for the toolbox customizer plugin. When publishing the changes it deletes the page cache
  6.  * so that it updates colors and backgrounds
  7.  */
  8. function clear_beaverbuilder_asset_cache( $prefix ) {
  9.  
  10.     if ( class_exists( 'FLBuilderModel' ) ) {
  11.  
  12.         FLBuilderModel::delete_asset_cache_for_all_posts();
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement