Initial commit
This commit is contained in:
commit
28e6ddf404
1083 changed files with 191734 additions and 0 deletions
24
plugins/jetpack/modules/videopress.php
Normal file
24
plugins/jetpack/modules/videopress.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
/**
|
||||
* Module Name: VideoPress
|
||||
* Module Description: Upload and embed videos right on your site. (Subscription required.)
|
||||
* First Introduced: 2.5
|
||||
* Free: false
|
||||
* Requires Connection: Yes
|
||||
* Sort Order: 27
|
||||
* Module Tags: Photos and Videos
|
||||
* Additional Search Queries: video, videos, videopress
|
||||
*/
|
||||
|
||||
Jetpack::dns_prefetch( array(
|
||||
'//v0.wordpress.com',
|
||||
) );
|
||||
|
||||
/**
|
||||
* We won't have any videos less than sixty pixels wide. That would be silly.
|
||||
*/
|
||||
define( 'VIDEOPRESS_MIN_WIDTH', 60 );
|
||||
|
||||
include_once dirname( __FILE__ ) . '/videopress/utility-functions.php';
|
||||
include_once dirname( __FILE__ ) . '/videopress/shortcode.php';
|
||||
include_once dirname( __FILE__ ) . '/videopress/videopress.php';
|
Reference in a new issue