external-media.php
13 lines
| 1 | <?php |
| 2 | /** |
| 3 | * External Media allows users to either select external photos in the Editor or import external photos in the WP Admin. |
| 4 | * This is not a proper module, and it's always loaded when a site is connected to WordPress.com via module-extras.php. |
| 5 | * In addition, the whole functionality lives in a separate External Media package. |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | if ( class_exists( 'Automattic\Jetpack\External_Media\External_Media' ) ) { |
| 11 | Automattic\Jetpack\External_Media\External_Media::init(); |
| 12 | } |
| 13 |