正在查看 4 个帖子:1-4 (共 4 个帖子)
-
作者帖子
-
bbpress 现在只让管理员对于 HTML 输入没有限制,如何让版主 (moderator) 也可以使用 HTML 代码?
谢谢!
bbPress 为了安全起见没有允许所有用户都无限制输入 HTML ,可以试试下面这个:
if ( !function_exists( 'ja_filter_bbpress_allowed_tags' ) ) { function ja_filter_bbpress_allowed_tags() { return array( // Links 'a' => array( 'href' => array(), 'title' => array(), 'rel' => array() ), // Quotes 'blockquote' => array( 'cite' => array() ), // Code 'code' => array(), 'pre' => array(), // Formatting 'em' => array(), 'strong' => array(), 'del' => array( 'datetime' => true, ), 'span' => array( 'lang' => array(), 'style' => array() ), 'p' => array( 'dir' => array(), 'style' => array() ), 'div' => array( 'class' => array() ), // Lists 'ul' => array(), 'ol' => array( 'start' => true, ), 'li' => array(), // Images 'img' => array( 'src' => true, 'border' => true, 'alt' => true, 'height' => true, 'width' => true, ) ); } } add_filter( 'bbp_kses_allowed_tags', 'ja_filter_bbpress_allowed_tags' );
好的,多谢!我试试。
-
作者帖子
正在查看 4 个帖子:1-4 (共 4 个帖子)
- 哎呀,回复话题必需登录。