Automattic\WooCommerce\Vendor\Sabberworm\CSS\RuleSet

DeclarationBlock::createBackgroundShorthandpublicWC 1.0

Устарела с версии since 8.7.0, will be removed without substitution in version 9.0 in #511. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.

Метод класса: DeclarationBlock{}

Хуков нет.

Возвращает

null. Ничего (null).

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

$DeclarationBlock = new DeclarationBlock();
$DeclarationBlock->createBackgroundShorthand();

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

Устарела С версии 8.7.0 , will be removed without substitution in version 9.0 in #511

Код DeclarationBlock::createBackgroundShorthand() WC 11.0.1

public function createBackgroundShorthand()
{
    $aProperties = [
        'background-color',
        'background-image',
        'background-repeat',
        'background-position',
        'background-attachment',
    ];
    $this->createShorthandProperties($aProperties, 'background');
}