Shortcode:
[permalink][title][/permalink]
Output:
<a href="foobar">[title]</a>
WordPress shortcode API sais, it’s correct:
http://codex.wordpress.org/Shortcode_API#Nested_Shortcodes
Any Ideas?
Shortcode:
[permalink][title][/permalink]
Output:
<a href="foobar">[title]</a>
WordPress shortcode API sais, it’s correct:
http://codex.wordpress.org/Shortcode_API#Nested_Shortcodes
Any Ideas?
You must be logged in to post a comment.
From the page you linked:
You need to recursively call
do_shortcode()
on any shortcode handler that could contain nested shortcodes. So for example:That should handle nested shortcodes just fine.