Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function event_list_donation_marker( $cost, $post_id ) {
  2. // Only add the donation marker in list view
  3. if ( ! tribe_is_list_view() ) return $cost;
  4.  
  5. $fields = tribe_get_custom_fields( $post_id );
  6.  
  7. if ( ! empty( $fields['Donation'] ) && 'Yes' === $fields['Donation'] )
  8. $cost .= ' BY DONATION ';
  9.  
  10. return $cost;
  11. }
  12.  
  13. add_filter( 'tribe_get_cost', 'event_list_donation_marker', 100, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement