Automattic\WooCommerce\EmailEditor\Integrations\WooCommerce\Renderer\Blocks
Product_Button::get_button_styles
Get styles for the button link element.
Method of the class: Product_Button{}
No Hooks.
Returns
Array.
Usage
// private - for code of main (parent) class only $result = $this->get_button_styles( $block_attributes, $rendering_context ): array;
- $block_attributes(array) (required)
- Block attributes.
- $rendering_context(Rendering_Context) (required)
- Rendering context.
Product_Button::get_button_styles() Product Button::get button styles code WC 10.7.0
private function get_button_styles( array $block_attributes, Rendering_Context $rendering_context ): array {
$block_styles = Styles_Helper::get_block_styles( $block_attributes, $rendering_context, array( 'color', 'typography' ) );
return Styles_Helper::extend_block_styles(
$block_styles,
array(
'display' => 'block',
'text-decoration' => 'none',
'width' => '100%',
)
);
}