Creating a custom rebrandly link using a wordpress shortcode

I am trying to create a rebrandly short link using a WordPress shortcode. Here’s what I have so far: Following the directions for PHP here – https://developers.rebrandly.com/docs The shortcode I’m testing is [shortlink]https://example.com[/shortlink] but its not working. When I change the part: $post_data[“destination”] = $content; to $post_data[“destination”] = “http://example.com”; it works. I must be putting … Read more