How to create a shortcode with multiple attribute values? f.e

[contact type="phone"]74847848[/contact]
 and 
[contact type="fax"]5565656565[/contact]


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




return '<div class="sckon '.$type.'">'.$content.'</div>';
 }
 add_shortcode("kontakti", "sc_kontakti");
link|improve this question

40% accept rate
feedback

1 Answer

$atts should be an array with all the attributes entered in your shortcode. for example

[contact type="phone" number="8888888"]

should give you

$atts['type']="phone"
$atts['number']="8888888"

And then you can work with those values to return the code outputted by the shortcode.

link|improve this answer
Ok, probably I mistyped. I wanted to say multiple attribute values. – jam Nov 24 '11 at 21:42
So you would like something like an array of values with a value? like $atts['type']['0'] would equal something? – Fredy31 Nov 24 '11 at 21:45
yes - phone, fax, email,address. Better that kind [contact type="phone"]74847848[/contact] – jam Nov 24 '11 at 21:50
I don't think that is possible. – Fredy31 Nov 24 '11 at 23:30
feedback

Your Answer

 
or
required, but never shown

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