Advertisement
eventsmanager

Custom - Event Image

Jun 7th, 2013
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function my_em_mod_custom_image_placeholders($replace, $EM_Event, $result){
  2. if ( $result == '#_EVENTIMAGECUSTOM' ) {
  3. $replace = get_the_post_thumbnail($EM_Event->post_id, 'thumbnail');
  4. }
  5. return $replace;
  6. }
  7. add_filter('em_event_output_placeholder','my_em_mod_custom_image_placeholders',1,3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement