Adding Google phone number code to iThemes Builder body tag

How to Track calls to a phone number on a website with google conversion tracking.

Track calls to a phone number on a website

Place the code below in your theme's functions.php file after changing your google phone number.

function my_add_google_phone_number($attributes) {
	$attributes['onload'] = "_googWcmGet('number', '1-800-123-4567')";
	return $attributes;
}
add_filter('builder_filter_body_attributes','my_add_google_phone_number');