Created
September 13, 2021 06:52
-
-
Save MrVibe/f3b68c7b34a71b8423b6c735d3bf714b to your computer and use it in GitHub Desktop.
Change curriculum Unit Icons
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
add_filter('wplms_get_element_icon',function($icon,$type){ | |
if($type == 'video'){ | |
$icon = 'YOUR ICON CLASS'; | |
} | |
return $icon; | |
},10,2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment