acf/admin/prevent_escaped_html_notice

acf/admin/prevent_escaped_html_notice

Hook Type: filter

See hook in core

Displaying hooks found in version: advanced-custom-fields.6.3.1

apply_filters('acf/admin/prevent_escaped_html_notice') is found 2 times:

  • /includes/admin/admin.php line 219
    				return;
    			}
    
    			// Allow opting-out of the notice.
    			if ( apply_filters( 'acf/admin/prevent_escaped_html_notice', false ) ) {
    				return;
    			}
    
    			if ( get_option( 'acf_escaped_html_notice_dismissed' ) ) {
    				return;
    			}
    
  • /includes/api/api-template.php line 141
     * @return void
     */
    function _acf_log_escaped_html( $function, $selector, $field, $post_id ) {
    	// If the notice isn't shown, no use in logging the errors.
    	if ( apply_filters( 'acf/admin/prevent_escaped_html_notice', false ) ) {
    		return;
    	}
    
    	// If the notice has been dismissed, don't log further errors.
    	if ( get_option( 'acf_escaped_html_notice_dismissed' ) ) {
    		return;