A few weeks ago I said I no longer needed the Wufoo embedding code that I’d put into bSuite. I was wrong. So I’ve taken another look, fixed the code from my old post, and coded it up into a stand-alone plugin. I’ve added installation and usage instructions to the bottom of the original post.
Posted April 23, 2009 by Casey Bisson
Categories: Technology. Tags: embed, embedding, plugin, shortcode, wordpress, wufoo. Be the first one.
I tossed this together a while ago, and it even made it in to bSuite for a time, but I don’t have a need for it anymore, and I’m cleaning house.
function shortcode_wufoo( $arg ){
// [wufoo id=z7x4m0 domain=place.wufoo.com]
$arg = shortcode_atts( array(
‘id’ => FALSE,
‘domain’ => FALSE,
‘height’ => 500,
), $arg );
if( [...]
Posted March 23, 2009 by Casey Bisson
Categories: Technology. Tags: bsuite, embed, embedding, shortcode, shortcodes, wordpress, wufoo, Wufoo forms. One Comment.