快跑吧do_shortcode($returned_content)
它将在内容上运行所有短代码过滤器。
i、 e。
插件:MyPlugin。php
function some_func(){
$data = "[tabs][tab]Tabbed content here[/tab][/tabs]";
return $data;
}
上述函数将按字面形式返回数据。没有解析短代码。如果要分析要显示的短代码,只需执行以下操作:
function some_func(){
$data = "[tabs][tab]Tabbed content here[/tab][/tabs]";
return do_shortcode($data);
}
此示例将在返回之前解析短代码。