感谢龙哥的建议
[topic-comment=147][/topic-comment]
super-forum v1.5.4 版本开始,支持了禁用指定 ShortCode 的功能
在评论中禁用指定 ShortCode
请确保评论内容 ShortCode 渲染时是这样写的:
{!! ShortCodeR()->comment()->handle($data->content) !!}
而不是
{!! ShortCodeR()->handle($data->content) !!}
评论中禁用 reply 短标签
<?php
Itf()->add('_Comment_ShortCodeR',(int)id,'reply');
评论中禁用 user 短标签
<?php
Itf()->add('_Comment_ShortCodeR',(int)id,'user');
在帖子中禁用指定 ShortCode
请确保评论内容 ShortCode 渲染时是这样写的:
{!! ShortCodeR()->topic()->handle($data->content) !!}
而不是
{!! ShortCodeR()->handle($data->content) !!}
禁用 reply 短标签
<?php
Itf()->add('_Topic_ShortCodeR',(int)id,'reply');
禁用 user 短标签
<?php
Itf()->add('_Topic_ShortCodeR',(int)id,'user');
全局禁用指定 ShortCode
禁用 reply 短标签
<?php
Itf()->add('_ShortCodeR',(int)id,'reply');
禁用 user 短标签
<?php
Itf()->add('_ShortCodeR',(int)id,'user');