plugin updates

This commit is contained in:
Tony Volpe
2024-07-18 20:40:50 +00:00
parent 1cbeccbe26
commit f13cad0e36
314 changed files with 45107 additions and 30963 deletions

View File

@@ -77,6 +77,11 @@ function acf_esc_attrs( $attrs ) {
* @return string
*/
function acf_esc_html( $string = '' ) {
if ( ! is_scalar( $string ) ) {
return false;
}
return wp_kses( (string) $string, 'acf' );
}