the_content, $value
the_content, $value
Appears in: jetpack.16.0.1
Hook Type: filter
Displaying hooks found in version: jetpack.16.0.1apply_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"([^>]+)?>(.+)?</div>@is', '', $value ); return $value; } } }