%s

', esc_html__( 'WP Content Sync dependencies are missing. Run composer install before activating the plugin.', 'wp-content-sync' ) ); } ); return; } require_once $wpcs_autoload; register_activation_hook( __FILE__, array( \WPContentSync\Activator::class, 'activate' ) ); register_deactivation_hook( __FILE__, array( \WPContentSync\Deactivator::class, 'deactivate' ) ); add_action( 'plugins_loaded', static function (): void { $plugin = \WPContentSync\Plugin::create(); $plugin->register(); } );