Advertisement
w0lfiesmith

multiple day events modification

Mar 7th, 2012
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php                              
  2. $date = get_post_meta($post->ID, 'date', true);
  3. $end_date = get_post_meta($post->ID, 'end_date', true);        
  4. if ($end_date){                
  5. echo 'This event will be held from '.$date. ' to '.$end_date;              
  6. }  
  7. else if($date){
  8. echo 'This event will be held on: '.$date;                 
  9. }          
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement