pessek / hypeshortcode
短代码支持
v1.2.0
2021-05-29 13:28 UTC
Requires
- php: >=7.0
- composer/installers: ~1.0
This package is auto-updated.
Last update: 2024-09-29 06:03:03 UTC
README
添加自定义 BB-style 短代码支持
用法
注册短代码
elgg()->shortcodes->register('mycode'); // then add a view in shortcodes/mycode // view vars will contain attributes of the shortcode
生成短代码标签
elgg()->shortcodes->generate('mycode', [ 'foo' => 'bar', ]);
展开短代码
elgg()->shortcodes->expand($text);
移除短代码
elgg()->shortcodes->strip($text);