File "attributes.php"

Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/gutenberg/src/layouts/sa-view/attributes.php
File size: 417 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use XTS\Gutenberg\Block_Attributes;

if ( ! function_exists( 'wd_get_shop_archive_block_view_attrs' ) ) {
	function wd_get_shop_archive_block_view_attrs() {
		$attr = new Block_Attributes();

		$attr->add_attr(
			array(
				'products_columns_variations' => array(
					'type'    => 'string',
					'default' => '2,3,4',
				),
			)
		);

		wd_get_advanced_tab_attrs( $attr );

		return $attr->get_attr();
	}
}