/**
  * Echo the client address
  * @param  integer $id
  * @return string
  */
 function si_client_address($id = 0)
 {
     if (!$id) {
         $id = get_the_ID();
     }
     echo apply_filters('si_client_address', si_address(si_get_client_address($id)), $id);
 }
Example #2
0
 /**
  * Echo the client address
  * @param  integer $id
  * @return string
  */
 function si_client_address($id = 0)
 {
     if (!$id) {
         global $post;
         $id = $post->ID;
     }
     echo apply_filters('si_client_address', si_address(si_get_client_address($id)), $id);
 }