Advertisement
phpface

Untitled

Jul 6th, 2017
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. if( ! function_exists( 'videotube_pull_full_thumbnail_size' ) ){
  2.     /**
  3.      * Pull full video thumbnail image
  4.      *
  5.      * @param string $size
  6.      * @return string full
  7.      */
  8.     function videotube_pull_full_thumbnail_size( $size ) {
  9.         return 'full';
  10.     }
  11.    
  12.     add_filter( 'video_thumbnail_size' , 'videotube_pull_full_thumbnail_size', 10, 1 );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement