有没有一种方法可以在PHP中解析短代码?

时间:2011-10-06 作者:Pekka

许多插件没有提供从PHP中访问其功能的文档化方法(例如,在构建自定义主题时),而只提供插入帖子的短代码。

有没有一种标准的方法可以从PHP中执行快捷代码,就好像它是内容的一部分一样?像这样(这是虚构的):

$gallery_html = execute_shortcode("{gallery}");  //  this would return the HTML  
                                                 //  that the gallery plugin returns
                                                 // in the context of the current post

1 个回复
最合适的回答,由SO网友:Chris_O 整理而成

可以使用do_shortcode() 作用

$gallery_html = do_shortcode(\'[gallery]\');

结束