acf/admin/prevent_escaped_html_notice
acf/admin/prevent_escaped_html_notice
Appears in: advanced-custom-fields.6.2.7
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.2.7apply_filters('acf/admin/prevent_escaped_html_notice') is found 2 times:
- /includes/admin/admin.php line 219215216217218219220221222223224225
return
;
}
// Allow opting-out of the notice.
if
( apply_filters(
'acf/admin/prevent_escaped_html_notice'
, false ) ) {
return
;
}
$escaped
= _acf_get_escaped_html_log();
// Notice for when HTML has already been escaped.
- /includes/api/api-template.php line 141137138139140141142143144145146147
* @
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 field isn't set, we've output a non-ACF field, so don't log anything.
if
( !
is_array
(
$field
) ) {
return
;