Advertisement
BakerMan

Force attributes into featured image tag

Apr 11th, 2014
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_filter( 'tribe_event_featured_image', 'photoview_feat_img_sizes' );
  2.  
  3. function photoview_feat_img_sizes( $html ) {
  4.     if ( ! tribe_is_photo() ) return $html;
  5.     return str_replace( '<img ', '<img width="200" ', $html );
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement