I have a wordpress shortcode which contains some other shortcodes inside it. When the first shortcode is executed i want to filter out other shortcodes using a regex.

[main_code]
   [sub_code id='testid']test content[/sub_code]
   [sub_code id='testid' name='testname']test content[/sub_code]
[/main_code]

When i execute the main_code i want to filter the sub_code into an array and access its attributes without executing sub_code as a shortcode.

Anyone who has knowledge to give me a solution is highly appriciated.

link|improve this question

56% accept rate
feedback

1 Answer

up vote 1 down vote accepted

If you want to match the inner parts, then I'd advise:

preg_match_all('~\[sub_code([^\[\]]*)]([^\[\]]+)\[/sub_code]~', $content, $result);

The [^\[\]] matches any content without square brackets. So it's ensured no other shortcodes can exist within.

link|improve this answer
I tried your code and it gives an array with 2 empty elements. I have to consider about the attributes when matching as well – Rakhitha Nimesh Nov 21 '11 at 9:08
Added another placeholder for the params. – mario Nov 21 '11 at 9:10
It is almost perfect. now the attributes are received as [1] => Array ( [0] => id='testid' [1] => id='testid' name='teddsstname' [2] => id='testid' name='testname' ) Have you got any suggestions on getting the attributes seperately one by one – Rakhitha Nimesh Nov 21 '11 at 9:13
strtr for changing spaces into & ampersands. And parse_str for separating them, then trim for removing quotes. -- Alternatively a regex for that task. – mario Nov 21 '11 at 9:19
1  
What are the codez you ask? Well, /(\w+)='([^']*)'/ might do. – mario Nov 21 '11 at 9:24
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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