Advertisement
BakerMan

Placeholder for events without featured images

Mar 31st, 2014
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. add_filter( 'tribe_event_featured_image', 'featured_event_img_placeholder' );
  2.  
  3. function featured_event_img_placeholder( $html ) {
  4.     if ( ! empty( $html ) ) return $html;
  5.     return '<div style="width: 200px; height: 200px; background: #ddd"> </div>';
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement