正在查看 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 個帖子)
- 哎呀,回覆話題必需登錄。