Create a custom shortcode
[Put this in the theme functions.php and then define the [shortcode] anywhere in WP]
//* Example company phone number shortcode
function phone_shortcode() {
return '01530 836017';
}
add_shortcode('phone', 'phone_shortcode');