videopress.php 437 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Provides VideoPress videos support when module is disabled.
  4. *
  5. * @since 2.4
  6. * @since 3.9.5 Added compatibility with refactored VideoPress module.
  7. */
  8. if ( ! Jetpack::is_module_active( 'videopress' ) ) {
  9. Jetpack::dns_prefetch( array(
  10. '//v0.wordpress.com',
  11. ) );
  12. include_once JETPACK__PLUGIN_DIR . 'modules/videopress/utility-functions.php';
  13. include_once JETPACK__PLUGIN_DIR . 'modules/videopress/shortcode.php';
  14. }