safe_style_css хук-фильтрWP 2.8.1

Filters the list of allowed CSS attributes.

Использование

add_filter( 'safe_style_css', 'wp_kama_safe_style_css_filter' );

/**
 * Function for `safe_style_css` filter-hook.
 * 
 * @param string[] $attr Array of allowed CSS attributes.
 *
 * @return string[]
 */
function wp_kama_safe_style_css_filter( $attr ){

	// filter...
	return $attr;
}
$attr(string[])
Array of allowed CSS attributes.

Список изменений

С версии 2.8.1 Введена.

Где вызывается хук

safecss_filter_attr()
safe_style_css
wp-includes/kses.php 2331-2482
$allowed_attr = apply_filters(
	'safe_style_css',
	array(
		'background',
		'background-color',
		'background-image',
		'background-position',
		'background-repeat',
		'background-size',
		'background-attachment',
		'background-blend-mode',

		'border',
		'border-radius',
		'border-width',
		'border-color',
		'border-style',
		'border-right',
		'border-right-color',
		'border-right-style',
		'border-right-width',
		'border-bottom',
		'border-bottom-color',
		'border-bottom-left-radius',
		'border-bottom-right-radius',
		'border-bottom-style',
		'border-bottom-width',
		'border-bottom-right-radius',
		'border-bottom-left-radius',
		'border-left',
		'border-left-color',
		'border-left-style',
		'border-left-width',
		'border-top',
		'border-top-color',
		'border-top-left-radius',
		'border-top-right-radius',
		'border-top-style',
		'border-top-width',
		'border-top-left-radius',
		'border-top-right-radius',

		'border-spacing',
		'border-collapse',
		'caption-side',

		'columns',
		'column-count',
		'column-fill',
		'column-gap',
		'column-rule',
		'column-span',
		'column-width',

		'color',
		'filter',
		'font',
		'font-family',
		'font-size',
		'font-style',
		'font-variant',
		'font-weight',
		'letter-spacing',
		'line-height',
		'text-align',
		'text-decoration',
		'text-indent',
		'text-transform',

		'height',
		'min-height',
		'max-height',

		'width',
		'min-width',
		'max-width',

		'margin',
		'margin-right',
		'margin-bottom',
		'margin-left',
		'margin-top',
		'margin-block-start',
		'margin-block-end',
		'margin-inline-start',
		'margin-inline-end',

		'padding',
		'padding-right',
		'padding-bottom',
		'padding-left',
		'padding-top',
		'padding-block-start',
		'padding-block-end',
		'padding-inline-start',
		'padding-inline-end',

		'flex',
		'flex-basis',
		'flex-direction',
		'flex-flow',
		'flex-grow',
		'flex-shrink',
		'flex-wrap',

		'gap',
		'column-gap',
		'row-gap',

		'grid-template-columns',
		'grid-auto-columns',
		'grid-column-start',
		'grid-column-end',
		'grid-column-gap',
		'grid-template-rows',
		'grid-auto-rows',
		'grid-row-start',
		'grid-row-end',
		'grid-row-gap',
		'grid-gap',

		'justify-content',
		'justify-items',
		'justify-self',
		'align-content',
		'align-items',
		'align-self',

		'clear',
		'cursor',
		'direction',
		'float',
		'list-style-type',
		'object-fit',
		'object-position',
		'overflow',
		'vertical-align',
		'writing-mode',

		'position',
		'top',
		'right',
		'bottom',
		'left',
		'z-index',
		'box-shadow',
		'aspect-ratio',

		// Custom CSS properties.
		'--*',
	)
);

Где используется хук в WordPress

Использование не найдено.