Slider with SwipeJS

FoxATM helps me to get a quick overview of how ATM and UTM evolve around the world. Very useful to stay aware! Thanks.
Julie Saint-Lot
ATM Program Manager – ENAC (FR)
FoxATM helps me to get a quick overview of how ATM and UTM evolve around the world. Very useful to stay aware! Thanks.
Julie Saint-Lot
ATM Program Manager – ENAC (FR)
FoxATM helps me to get a quick overview of how ATM and UTM evolve around the world. Very useful to stay aware! Thanks.
Julie Saint-Lot
ATM Program Manager – ENAC (FR)
FoxATM helps me to get a quick overview of how ATM and UTM evolve around the world. Very useful to stay aware! Thanks.
Julie Saint-Lot
ATM Program Manager – ENAC (FR)

Documentation


Scripts import for WPCodeBox

Admin CSS in functions.php

Add this to functions.php for a better Gutenberg experience:

function runbot_splide_slider_block_editor_css() {
    $custom_css = "
		.splide{
			border:2px solid grey;
		}

		.splide__list{
			display: flex;
			width: 100%;
			overflow-x: scroll;
			flex-wrap: nowrap;
		}

		.splide__slide{
			flex-shrink: 0;
			width: 640px;
			max-width: 100%;
			height: 100%;
		}
    ";
	wp_add_inline_style('wp-edit-blocks', $custom_css);
}
add_action('enqueue_block_editor_assets', 'runbot_splide_slider_block_editor_css');