JohnPaulDesign
11/16/2016 - 4:47 PM

Create a custom shortcode

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');