wp_register_border_support

The timeline below displays how wordpress function wp_register_border_support has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.4

/**
 * Border block support flag.
 *
 * @package WordPress
 * @since 5.8.0
 */
/**
 * Registers the style attribute used by the border feature if needed for block
 * types that support borders.
 *
 * @since 5.8.0
 * @since 6.1.0 Improved conditional blocks optimization.
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_border_support($block_type)
{
    // Setup attributes and styles within that if needed.
    if (!$block_type->attributes) {
        $block_type->attributes = array();
    }
    if (block_has_support($block_type, '__experimentalBorder') && !array_key_exists('style', $block_type->attributes)) {
        $block_type->attributes['style'] = array('type' => 'object');
    }
    if (wp_has_border_feature_support($block_type, 'color') && !array_key_exists('borderColor', $block_type->attributes)) {
        $block_type->attributes['borderColor'] = array('type' => 'string');
    }
}

WordPress Version: 6.1

/**
 * Border block support flag.
 *
 * @package WordPress
 * @since 5.8.0
 */
/**
 * Registers the style attribute used by the border feature if needed for block
 * types that support borders.
 *
 * @since 5.8.0
 * @since 6.1.0 Improved conditional blocks optimization.
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_border_support($block_type)
{
    // Setup attributes and styles within that if needed.
    if (!$block_type->attributes) {
        $block_type->attributes = array();
    }
    if (block_has_support($block_type, array('__experimentalBorder')) && !array_key_exists('style', $block_type->attributes)) {
        $block_type->attributes['style'] = array('type' => 'object');
    }
    if (wp_has_border_feature_support($block_type, 'color') && !array_key_exists('borderColor', $block_type->attributes)) {
        $block_type->attributes['borderColor'] = array('type' => 'string');
    }
}

WordPress Version: 5.8

/**
 * Border block support flag.
 *
 * @package WordPress
 * @since 5.8.0
 */
/**
 * Registers the style attribute used by the border feature if needed for block
 * types that support borders.
 *
 * @since 5.8.0
 * @access private
 *
 * @param WP_Block_Type $block_type Block Type.
 */
function wp_register_border_support($block_type)
{
    // Determine if any border related features are supported.
    $has_border_support = block_has_support($block_type, array('__experimentalBorder'));
    $has_border_color_support = wp_has_border_feature_support($block_type, 'color');
    // Setup attributes and styles within that if needed.
    if (!$block_type->attributes) {
        $block_type->attributes = array();
    }
    if ($has_border_support && !array_key_exists('style', $block_type->attributes)) {
        $block_type->attributes['style'] = array('type' => 'object');
    }
    if ($has_border_color_support && !array_key_exists('borderColor', $block_type->attributes)) {
        $block_type->attributes['borderColor'] = array('type' => 'string');
    }
}