Can you help me with this, I want to create a multiple shortcodes something likes this.

[tabs]

[tab title="1"]
//content goes here
[/tab]

[tab title="2"]
//content2 goes here
[/tab]

[tab title="3"]
//content4 goes here
[/tab]

[/tabs]

expected output :

<ul>
    <li id="tab1">[tab title="1" goes here]</li>
    <li id="tab2">[tab title="2" goes here]</li>
    <li id="tab3">[tab title="3" goes here]</li>
</ul>

<ul id="tab1">
    <li>Content1</li>
</ul>

<ul id="tab2">
    <li>Content2</li>
</ul>

<ul id="tab3">
    <li>Content3</li>
</ul>

How to do that in wordpress ?

Thanks in advanced

link|improve this question
1  
there is nothing better than reading the official documentation – balexandre Jan 11 at 7:26
you do realize ID attribute must be unique also there is a WordPress stack exchange site.. this should probably be posted there as you are not looking for specific help to a problem but looking for guidance on how to develop a wordpress plugin. – rlemon Jan 11 at 19:28
feedback

2 Answers

add_shortcode('external', 'externalFunction');

function externalFunction( $atts,$content = null){
     echo do_shortcode('[internal]'.$content.'[/internal]');
}


add_shortcode('internal','internalFunction');

function internalFunction($atts, $content=null)
{

  extract(shortcode_atts(
      array(
            "title" => ''
        ), $atts));  

    /*
     * do your stuffs here
     */


}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.