您正在寻找Enclosing Shortcode. 下面是一个如何实现这一目标的示例。
function example_shortcode($atts = [], $content = null)
{
// do something to $content
// run shortcode parser recursively
$content = do_shortcode($content);
// always return
return $content;
}
add_shortcode(\'example\', \'example_shortcode\');
现在你可以像这样使用它
[example] Here is my content [/example]
了解更多信息add_shortcode()
here