Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter fsimplicio

    (@fsimplicio)

    wrong:

    não altere esta função:

    function kses_remove_filters() {
    // Normal filtering
    remove_filter(‘title_save_pre’, ‘wp_filter_kses’);

    // Comment filtering
    remove_filter( ‘pre_comment_content’, ‘wp_filter_post_kses’ );
    remove_filter( ‘pre_comment_content’, ‘wp_filter_kses’ );

    // Post filtering
    remove_filter(‘content_save_pre’, ‘wp_filter_post_kses’);
    remove_filter(‘excerpt_save_pre’, ‘wp_filter_post_kses’);
    remove_filter(‘content_filtered_save_pre’, ‘wp_filter_post_kses’); // <<<<THIS LINE !!!!!
    }

    e adicione esta linha:
    add_filter( ‘bbp_kses_allowed_tags’, ‘ntwb_bbpress_custom_kses_allowed_tags’ );

Viewing 1 replies (of 1 total)