the_content, $value

the_content, $value

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('the_content, $value') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-classic-theme-helper/src/custom-post-types/class-jetpack-testimonial-textarea-control.php line 46
    		 * @return string Sanitized value.
    		 */
    		public static function sanitize_content( $value ) {
    			if ( ! empty( $value ) ) {
    				$value = apply_filters( 'the_content', $value );
    			}
    			$value = preg_replace( '@<div id="jp-post-flair"(&#91;^>]+)?>(.+)?</div>@is', '', $value );
    			return $value;
    		}
    	}
    }