/**
  * Echo the estimate sender_note
  * @param  integer $id
  * @return string
  */
 function si_estimate_sender_note($id = 0)
 {
     if (!$id) {
         $id = get_the_ID();
     }
     echo apply_filters('si_estimate_sender_note', si_get_estimate_sender_note($id), $id);
 }
Esempio n. 2
0
 /**
  * Echo the estimate sender_note
  * @param  integer $id 
  * @return string      
  */
 function si_estimate_sender_note($id = 0)
 {
     if (!$id) {
         global $post;
         $id = $post->ID;
     }
     echo apply_filters('si_estimate_sender_note', si_get_estimate_sender_note($id), $id);
 }