Skip to content

Instantly share code, notes, and snippets.

@danielstrelec
Last active January 25, 2019 12:53
Show Gist options
  • Save danielstrelec/01b4ea4375040a0cb0231d38984a82b1 to your computer and use it in GitHub Desktop.
Save danielstrelec/01b4ea4375040a0cb0231d38984a82b1 to your computer and use it in GitHub Desktop.
// zobrazení formátů v editoru
if ( ! function_exists( 'wpex_style_select' ) ) {
function wpex_style_select( $buttons ) {
array_push( $buttons, 'styleselect');
return $buttons;
}
}
add_filter( 'mce_buttons', 'wpex_style_select' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment