wpseek.com
WordPress开发者和主题制作者的搜索引擎



filter_block_core_template_part_attributes › WordPress Function

Since6.5.5
已弃用n/a
filter_block_core_template_part_attributes ( $attribute_value, $attribute_name, $allowed_html )
参数: (3)
  • (string) $attribute_value The attribute value to filter.
    Required: Yes
  • (string) $attribute_name The attribute name.
    Required: Yes
  • (array[]|string) $allowed_html An array of allowed HTML elements and attributes, or a context name such as 'post'. See wp_kses_allowed_html() for the list of accepted context names.
    Required: Yes
返回:
  • (string) The sanitized attribute value.
定义在:
文档:

Sanitizes the value of the Template Part block's `tagName` attribute.



源码

function filter_block_core_template_part_attributes( $attribute_value, $attribute_name, $allowed_html ) {
	if ( empty( $attribute_value ) || 'tagName' !== $attribute_name ) {
		return $attribute_value;
	}
	if ( ! is_array( $allowed_html ) ) {
		$allowed_html = wp_kses_allowed_html( $allowed_html );
	}
	return isset( $allowed_html[ $attribute_value ] ) ? $attribute_value : '';
}