# jetpack/16.2/modules/shortcodes/flatio.php

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

- Page: https://pluginprobe.com/plugins/jetpack/16.2/code/modules/shortcodes/flatio.php
- Raw: https://pluginprobe.com/plugins/jetpack/16.2/raw/modules/shortcodes/flatio.php
- Modified: 2025-11-24T17:00:32+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/shortcodes/flatio.php#L10-L20`.

```php
<?php
/**
 * Flat.io embed
 *
 * Example URL: https://flat.io/score/5a5268ed41396318cbd7772c-string-quartet-for-rainy-days
 *
 * @package automattic/jetpack
 */

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

// Register oEmbed provider.
wp_oembed_add_provider( 'https://flat.io/score/*', 'https://flat.io/services/oembed', false );
wp_oembed_add_provider( 'https://*.flat.io/score/*', 'https://flat.io/services/oembed', false );

```
