Created
February 22, 2013 15:31
-
-
Save stephanie-walter/5014232 to your computer and use it in GitHub Desktop.
WordPress Branch embed - WordPress short code to embed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Adds [branch id=""] shortcode in WordPress | |
if ( !function_exists('branch_embedded')) { | |
function branch_embedded($atts) { | |
$atts = shortcode_atts(array('id' => ''), $atts); | |
$output = '<script type="text/javascript" src="http://embed-script.branch.com/assets/embed/embed.m.js?body=0" data-branch-embedid="' . esc_attr($atts['id']) . '" ></script>'; | |
return $output ; | |
} | |
add_shortcode('branch', 'branch_embedded'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment