Created
April 24, 2023 18:34
-
-
Save alanef/575dc5e3de59f6cb271aae51c62c66d8 to your computer and use it in GitHub Desktop.
Change Slider Speed Filter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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