Loden Ein absolutes Muss im Landhausstil Doch er überzeugt nicht nur optisch, sondern bietet auch zahlreiche funktionale Vorteile: Angenehm weiche Haptik Optimales Raumklima Hervorragende Akustik Schmutzabweisend und leicht zu pflegen
add_action( 'upgrader_process_complete', 'auto_update_elementor_db', 10, 2 );
function auto_update_elementor_db( $upgrader_object, $options ) {
if ( $options['action'] == 'update' && $options['type'] == 'plugin' ) {
foreach( $options['plugins'] as $plugin ) {
if ( $plugin == 'elementor/elementor.php' ) {
\Elementor\Plugin::$instance->files_manager->clear_cache();
\Elementor\Plugin::$instance->db->sync_all();
}
}
}
}
Nach oben