Advertisement
arie_cristianD

change 350x250 thumbnail source with full size

Jan 6th, 2025
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_filter( 'post_thumbnail_size', 'change_jnews_thumbnail', 99, 2 );
  2.  
  3.  
  4. function change_jnews_thumbnail( $size, $post_id ) {
  5.     if ( 'jnews-350x250' === $size ) {
  6.         $size = 'full';
  7.     }
  8.     return $size;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement