Created
March 26, 2015 15:51
-
-
Save tomhemsley/f336f53eb71b654cef32 to your computer and use it in GitHub Desktop.
Meta Slider - Layer Editor - Add Custom Colors
This file contains 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
function metaslider_add_custom_colors_to_layer_editor($custom_colors) { | |
// define colors as hex codes (sans #), comma separated | |
return "FFFF00,00FFFF,FF0000"; | |
} | |
add_filter('metaslider_layer_editor_colors', 'metaslider_add_custom_colors_to_layer_editor'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment