/* Tracking Number Shortcode ---------------------------------------------------------------------------- */ add_shortcode('company_phone', 'company_phone'); function company_phone() { ob_start(); $track_num = str_replace(array("(",")","-"," "),"",get_field('company_phone', 'option')); echo ''.get_field('company_phone', 'option').''; return ob_get_clean(); }