暂无描述

videopress.php 503B

12345678910111213141516171819202122
  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. * @package automattic/jetpack
  9. */
  10. if ( ! Jetpack::is_module_active( 'videopress' ) ) {
  11. \Automattic\Jetpack\Assets::add_resource_hint(
  12. '//v0.wordpress.com',
  13. 'dns-prefetch'
  14. );
  15. include_once JETPACK__PLUGIN_DIR . 'modules/videopress/utility-functions.php';
  16. include_once JETPACK__PLUGIN_DIR . 'modules/videopress/shortcode.php';
  17. }