treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] wordpress shortcode php help

  • I am having trouble finding the syntax error in this code




    function toggle_shortcode( $atts, $content = null ){
    extract( shortcode_atts(
    array(
    'title' => 'Click To Open',
    'color' => "
    ),
    $atts ) );
    return '<h3><a href="#">'. $title .'</a></h3><div>' . do_shortcode($content) . '</div>';
    }
    add_shortcode('toggle', 'toggle_shortcode');



  • never mind. Found it