Word Press Instructions The POST method is possible in a Word Press environment, but you will need to add a plugin to allow PHP posts in Word Press. For versions of WordPress up to 4.7.5, do a Plugin Search for "Insert PHP Code Snippet". Install it and then activate it. Note that depending on your version of WordPress, you may need to find another plugin. Under the new WordPress menu section "XYZ PHP Code", add a new PHP Code Snippet. Each benefit will have it's own snippet. The tracking name can be whatever you like, but you may want to name it something that you will recognize. In this instance, we'll use "test". Insert the following PHP code: function do_post($url, $params) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); $result = curl_exec($ch); curl_close($ch); return $response; } echo do_post("http://content.newbenefits.com/Feednocss.aspx", "hash=HASH&Section=SECTION"); Replace the HASH with the benefit-specific hash found in the Content Manager. Replace the SECTION with a section name, found in the Content Manager: My Subscriptions: Benefit: Standard Link. Note: Spaces must be replaced with a "%20". If you would like multiple benefit sections in the same snippet, you can by having multiple echo statements, as such: function do_post($url, $params) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); $result = curl_exec($ch); curl_close($ch); return $response; } echo do_post("http://content.newbenefits.com/Feednocss.aspx", "hash=HASH&Section=SECTION1"); echo do_post("http://content.newbenefits.com/Feednocss.aspx", "hash=HASH&Section=SECTION2"); Click Save. You can now copy the Snippet Short Code, in this instance [xyz-ips snippet="test"], and add it to any Text/HTML window in your WordPress site.