Skip to content

Instantly share code, notes, and snippets.

@tomhemsley
Created March 26, 2015 15:51
Show Gist options
  • Save tomhemsley/b138065c0b7f34941298 to your computer and use it in GitHub Desktop.
Save tomhemsley/b138065c0b7f34941298 to your computer and use it in GitHub Desktop.
Meta Slider - Layer Editor - Custom Font Sizes
function metaslider_add_custom_font_sizes_to_layer_editor($custom_sizes) {
// define fonts in the format of "Display Title/font size in em". Each font size seperated with a semi colon.
return "9/0.9em;25/3.5em;50/5em;100/10em;";
}
add_filter('metaslider_layer_editor_font_sizes', 'metaslider_add_custom_font_sizes_to_layer_editor');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment