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.
I’m cleaning house in bSuite, and I’ve decided that this shortcode function for embedding Slideshare items in WordPress needs to go. Rather than totally toss it away, however, I’m posting it here in case somebody else finds it useful.
function shortcode_slideshare( $arg ){
// [slideshare id=211578&doc=misty-holland-1198496990903941-2&w=425]
$arg = shortcode_atts( array(
‘id’ => FALSE,
), $arg );
if( ! $arg[’id’] )
return( FALSE [...]
Posted March 16, 2009 by Casey Bisson
Categories: Technology. Tags: bsuite, embed, embedding, shortcode, shortcodes, slideshare, wordpress. Be the first one.
a href=”http://wordpress.org/”>WordPress‘ Pages feature makes the popular blogging platform a sophisticated CMS. bSuite adds a few features to make it even better.
Write excerpts, tag, and categorize your pages
WordPress excerpts are an underused but powerful feature that allow you to explain to your readers why they should read the page you wrote. Tagging [...]
Posted September 24, 2008 by Casey
Categories: Libraries & Networked Information, Technology. Tags: bsuite, cms, features, innerindex, list_pages, plugin, shortcodes, wordpress, WordPress as CMS. Be the first one.