11 lines
483 B
PHP
11 lines
483 B
PHP
<?php
|
|
/**
|
|
* Loop end template
|
|
*/
|
|
?></div><?php
|
|
if ( filter_var( $this->get_settings_for_display( 'arrows' ), FILTER_VALIDATE_BOOLEAN ) ) {
|
|
echo sprintf( '<div class="jet-carousel__prev-arrow-%s jet-arrow prev-arrow">%s</div>', $this->get_id(), $this->__render_icon( 'prev_arrow', '%s', '', false ) );
|
|
echo sprintf( '<div class="jet-carousel__next-arrow-%s jet-arrow next-arrow">%s</div>', $this->get_id(), $this->__render_icon( 'next_arrow', '%s', '', false ) );
|
|
}
|
|
?></div>
|