Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS wordpress shortcode php help

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #35248
    cybershot
    Participant

    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 '

    '. $title .'

    ' . do_shortcode($content) . '
    ';
    }
    add_shortcode('toggle', 'toggle_shortcode');



Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.