Skip to content

Instantly share code, notes, and snippets.

@alanef
Created April 24, 2023 18:34
Show Gist options
  • Save alanef/575dc5e3de59f6cb271aae51c62c66d8 to your computer and use it in GitHub Desktop.
Save alanef/575dc5e3de59f6cb271aae51c62c66d8 to your computer and use it in GitHub Desktop.
Change Slider Speed Filter
<?php
/* Plugin Name: Change Slider Speed
*/
add_filter(
'wfea_layout_slider_slide_speed',
function ( $speed ) {
return 5000; // 5 seconds
},
10,
1
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment