Advertisement
phpface

Untitled

Sep 23rd, 2022 (edited)
1,391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. add_filter( 'post_thumbnail_size', function( $size, $post_id ){
  2.     if( $size == 'post-thumbnails' ){
  3.         $size = 'streamtube-image-medium';
  4.     }
  5.     return $size;
  6. }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement