pre_comment_author_name, addslashes( $raw

pre_comment_author_name, addslashes( $raw

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('pre_comment_author_name, addslashes( $raw') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-author.php line 171
    			$raw = trim( $this->first_name . ' ' . $this->last_name );
    			return Contact_Form_Plugin::strip_tags(
    				stripslashes(
    					/** This filter is already documented in core/wp-includes/comment-functions.php */
    					apply_filters( 'pre_comment_author_name', addslashes( $raw ) )
    				)
    			);
    		}
    		// This name value is filtered upstream when class is instantiated.
    		return $this->name;
    	}