# jetpack/16.2/modules/reprint-export.php

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 16.2. 19 lines.

- Page: https://pluginprobe.com/plugins/jetpack/16.2/code/modules/reprint-export.php
- Raw: https://pluginprobe.com/plugins/jetpack/16.2/raw/modules/reprint-export.php
- Modified: 2026-09-08T18:39:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetpack/16.2/code/modules/reprint-export.php#L10-L20`.

```php
<?php
/**
 * Reprint export support for Pressable and WordPress.com (Atomic) sites.
 *
 * Not a module: it has no module headers, so it cannot be activated or
 * deactivated. module-extras.php loads it as a connected tool, and
 * `jetpack_tools_to_include` can exclude it entirely.
 *
 * The registration itself is gated on the host — see Reprint_Exporter::is_available().
 *
 * @package automattic/jetpack
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit( 0 );
}

\Automattic\Jetpack\Reprint_Export\Reprint_Exporter::maybe_init();

```
