-
apply_filters( 'bbp_new_reply_pre_content', $reply_content )
Source Reference:
-
if ( empty( $reply_title ) ) bbp_add_error( 'bbp_reply_title', __( '<strong>ERROR</strong>: Your reply needs a title.', 'bbpress' ) ); /** Reply Content *********************************************************/ if ( !empty( $_POST['bbp_reply_content'] ) ) $reply_content = $_POST['bbp_reply_content']; // Filter and sanitize $reply_content = apply_filters( 'bbp_new_reply_pre_content', $reply_content ); // No reply content if ( empty( $reply_content ) ) bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply cannot be empty.', 'bbpress' ) ); /** Reply Flooding ********************************************************/ if ( !bbp_check_for_flood( $anonymous_data, $reply_author ) ) bbp_add_error( 'bbp_reply_flood', __( '<strong>ERROR</strong>: Slow down; you move too fast.', 'bbpress' ) );
-
Hook: add_filter: bbp_new_reply_pre_content instances (4)
-
add_filter( 'bbp_new_reply_pre_content', 'bp_activity_at_name_filter' )
Source Reference:
-
add_filter( 'bbp_pre_get_user_profile_url', array( $this, 'user_profile_url' ) ); /** Mentions **********************************************************/ // Only link mentions if activity component is active if ( bp_is_active( 'activity' ) ) { // Convert mentions into links on create add_filter( 'bbp_new_topic_pre_content', 'bp_activity_at_name_filter' ); add_filter( 'bbp_new_reply_pre_content', 'bp_activity_at_name_filter' ); // Convert mentions into links on edit add_filter( 'bbp_edit_topic_pre_content', 'bp_activity_at_name_filter' ); add_filter( 'bbp_edit_reply_pre_content', 'bp_activity_at_name_filter' ); } // Revert links into text on edit add_filter( 'bbp_get_form_topic_content', array( $this, 'strip_mentions_on_edit' ) ); add_filter( 'bbp_get_form_reply_content', array( $this, 'strip_mentions_on_edit' ) ); }
-
-
add_filter( 'bbp_new_reply_pre_content', 'balanceTags' )
Source Reference:
-
add_filter( 'bbp_get_forum_permalink', 'bbp_add_view_all' ); // wp_filter_kses on new/edit topic/reply title add_filter( 'bbp_new_reply_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_new_topic_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_edit_reply_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_edit_topic_pre_title', 'wp_filter_kses' ); // balanceTags, wp_filter_kses and wp_rel_nofollow on new/edit topic/reply text add_filter( 'bbp_new_reply_pre_content', 'balanceTags' ); add_filter( 'bbp_new_reply_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_new_reply_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_new_topic_pre_content', 'balanceTags' ); add_filter( 'bbp_new_topic_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_new_topic_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_edit_reply_pre_content', 'balanceTags' ); add_filter( 'bbp_edit_reply_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_edit_reply_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_edit_topic_pre_content', 'balanceTags' ); add_filter( 'bbp_edit_topic_pre_content', 'wp_rel_nofollow' );
-
-
add_filter( 'bbp_new_reply_pre_content', 'wp_rel_nofollow' )
Source Reference:
-
// wp_filter_kses on new/edit topic/reply title add_filter( 'bbp_new_reply_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_new_topic_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_edit_reply_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_edit_topic_pre_title', 'wp_filter_kses' ); // balanceTags, wp_filter_kses and wp_rel_nofollow on new/edit topic/reply text add_filter( 'bbp_new_reply_pre_content', 'balanceTags' ); add_filter( 'bbp_new_reply_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_new_reply_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_new_topic_pre_content', 'balanceTags' ); add_filter( 'bbp_new_topic_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_new_topic_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_edit_reply_pre_content', 'balanceTags' ); add_filter( 'bbp_edit_reply_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_edit_reply_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_edit_topic_pre_content', 'balanceTags' ); add_filter( 'bbp_edit_topic_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_edit_topic_pre_content', 'wp_filter_kses' );
-
-
add_filter( 'bbp_new_reply_pre_content', 'wp_filter_kses' )
Source Reference:
-
// wp_filter_kses on new/edit topic/reply title add_filter( 'bbp_new_reply_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_new_topic_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_edit_reply_pre_title', 'wp_filter_kses' ); add_filter( 'bbp_edit_topic_pre_title', 'wp_filter_kses' ); // balanceTags, wp_filter_kses and wp_rel_nofollow on new/edit topic/reply text add_filter( 'bbp_new_reply_pre_content', 'balanceTags' ); add_filter( 'bbp_new_reply_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_new_reply_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_new_topic_pre_content', 'balanceTags' ); add_filter( 'bbp_new_topic_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_new_topic_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_edit_reply_pre_content', 'balanceTags' ); add_filter( 'bbp_edit_reply_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_edit_reply_pre_content', 'wp_filter_kses' ); add_filter( 'bbp_edit_topic_pre_content', 'balanceTags' ); add_filter( 'bbp_edit_topic_pre_content', 'wp_rel_nofollow' ); add_filter( 'bbp_edit_topic_pre_content', 'wp_filter_kses' );
-