File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/so-widgets-bundle/widgets/anything-carousel/tpl/item.php
<?php foreach ( $settings['items'] as $item ) { ?>
	<div class="sow-carousel-item" tabindex="-1">
		<?php if ( ! empty( $item['title'] ) ) { ?>
			<<?php esc_html_e( $settings['item_title_tag'] ); ?> class="sow-carousel-item-title">
				<?php echo esc_html( $item['title'] ); ?>
			</<?php esc_html_e( $settings['item_title_tag'] ); ?>>
		<?php } ?>

		<div class="sow-carousel-content">
			<?php $this->render_item_content( $item, $instance ); ?>
		</div>
	</div>
	<?php
}