Advertisement
arie_cristianD

change 350x250 thumbnail rendered size

Jan 27th, 2025
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 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 = 'jnews-750x536'; /* you also can change this with jnews-1140x815 */
  7.     }
  8.     return $size;
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement