PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
integrations
/
gutenberg
/
src
/
blocks
/
slider
<?php use XTS\Gutenberg\Block_Attributes; if ( ! function_exists( 'wd_get_block_slider_attrs' ) ) { function wd_get_block_slider_attrs() { $attr = new Block_Attributes(); $attr->add_attr( array( 'heightType' => array( 'type' => 'string', 'default' => 'custom', ), 'aspectRatio' => array( 'type' => 'string', 'default' => 'asImage', 'responsive' => true, ), 'height' => array( 'type' => 'string', 'default' => '500', 'responsive' => true, 'unit' => 'px', ), 'effect' => array( 'type' => 'string', 'default' => 'slide', ), 'arrowsBorderType' => array( 'type' => 'string', ), 'arrows' => array( 'type' => 'boolean', 'default' => true, ), 'arrowsTablet' => array( 'type' => 'boolean', 'default' => true, ), 'arrowsMobile' => array( 'type' => 'boolean', 'default' => true, ), 'arrowsStyle' => array( 'type' => 'string', 'default' => '1', ), 'pagination' => array( 'type' => 'boolean', 'default' => true, ), 'paginationTablet' => array( 'type' => 'boolean', 'default' => true, ), 'paginationMobile' => array( 'type' => 'boolean', 'default' => true, ), 'paginationStyle' => array( 'type' => 'string', 'default' => '1', ), 'paginationBorderType' => array( 'type' => 'string', ), 'autoplaySpeed' => array( 'type' => 'string', 'default' => '5000', ), ) ); return $attr->get_attr(); } }
[-] css.php
[edit]
[-] attributes.php
[edit]
[-] assets.php
[edit]
[+]
..