sgsoft-studio/shortcode

WebEd 短代码集成

此软件包的规范存储库似乎已丢失,因此已冻结此软件包。

4.0.1 2017-09-17 10:40 UTC

README

#WebEd 短代码 Total downloads Latest Stable Version License

#### 文档 Shortcode 已经由 WebEd 启用。您不能将其关闭。

https://github.com/webwizo/laravel-shortcodes

#### 快速使用 要注册短代码,只需将此代码放在您的模块服务提供者中

add_shortcode('revslider', function ($shortcode, $content, $compiler, $name) {
    /**
     * @var \WebEd\Base\Shortcode\Compilers\Shortcode $shortcode
     * @var string $content
     * @var \WebEd\Base\Shortcode\Compilers\ShortcodeCompiler $compiler
     * @var string $name
     */
     // put your magic here...
});

编译您的短代码

do_shortcode('some string with shortcode [revslider id=17 class="revolution-slider"]', $stripContent = false);