Advertisement
phpface

Untitled

Oct 7th, 2020
1,051
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. /**
  2.  *
  3.  *
  4.  * Filter the thumbnail size.
  5.  *
  6.  * @since 1.0.0
  7.  *
  8.  */
  9. function videotube_child_filter_video_thumbnail_size( $size ){
  10.     return 'full';
  11. }
  12. add_filter( 'video_thumbnail_size', 'videotube_child_filter_video_thumbnail_size', 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement