如果您有这样创建的简码:
[shortcode1 attribute1="content" attribute2="content with [shortcode2] too"]
因为 shortcode2 正在以这种方式使用,所以它破坏了 shortcode1。如何提取attribute2内容然后执行shortcode2?
目前我正在提取这样的属性:
extract( shortcode_atts( array(
'attribute1' => '',
'attribute2' => ''), $atts ) );
但是在属性中包含 shortcode2 会完全破坏输出。
有人知道怎么做吗?谢谢