/ Published in: PHP
Expand |
Embed | Plain Text
// without attributes function one_half($atts, $content=null){ return '<div class="one-half">'.do_shortcode($content).'</div>'; } add_shortcode('one_half', 'one_half'); // attributes function toggle($atts, $content=null){ 'title' => 'ITEM' ), $atts )); return '<h5 class="toggle-trigger custom"><a href="#">'.$title.'</a></h5> <div class="toggle-container"> <div class="block"> <p>'.do_shortcode($content).'</p> </div> </div>'; } add_shortcode('toggle', 'toggle');
You need to login to post a comment.
