Parrothead @ WP ShowHide Elements
- Alias: Parrothead
- Skickat: 2010-09-17 @ 21:22
- Kommenterat: WP ShowHide Elements
Code got mangled:
Here’s the function again
function Showhide($atts, $content = null){
extract( shortcode_atts( array(
‘title’ => ‘Add Title’,
), $atts ) );
$nice_title = str_replace(‘ ‘,”,$title);
$rand = rand(0,20);
$accordion = ‘<h5 class=”question”><a onclick=”wp_showhide(\”.$nice_title.$rand.’\’)” href=”javascript:void(0);”>’.$title.'</a></h5>’;
$accordion .= ‘<div id=”‘.$nice_title.$rand.'” class=”answer” style=”display: none”>’. do_shortcode($content) .'</div>’;
return $accordion;
}