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' );