File "kses-20250110182343.php"
Full Path: /home/pumpbmko/public_html/wp-content/plugins/gutenberg/lib/compat/wordpress-6.5/kses-20250110182343.php
File size: 433 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Temporary compatibility shims for block APIs present in Gutenberg.
*
* @package gutenberg
*/
/**
* Update allowed inline style attributes list.
*
* @param string[] $attrs Array of allowed CSS attributes.
* @return string[] CSS attributes.
*/
function gutenberg_safe_style_attrs_6_5( $attrs ) {
$attrs[] = 'background-repeat';
return $attrs;
}
add_filter( 'safe_style_css', 'gutenberg_safe_style_attrs_6_5' );