Advertisement
arie_cristianD

not crop featured gallery hooks

Feb 24th, 2025
174
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(
  2.     'jnews_use_custom_image',
  3.     function ( $size ) {
  4.  
  5.         if ( is_single() && 'jnews-750x536' === $size ) {
  6.             $size = 'full';
  7.         }
  8.         return $size;
  9.     }
  10. );
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement