Skip to content

Snippet: Enable Keyboard Navigation for the Image Slider Element

add_filter( 'vcex_image_flexslider_data_attributes', function ( $data_attrs, $atts ) {
	$data_attrs[] = 'data-keyboard="true"';
	return $data_attrs;
}, 10, 2 );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top