TinyMCE class editor Advanced Custom Formats / Styles / Shortcode Buttons #wordpress
/* step 1: load this in editor-style.css in the theme folder */ | |
/* step 2: activate function "Create CSS classes menu" in tinymce advanced settings */ | |
/* step 3: add "Formate" to toolbar in tinymce advanced settings */ | |
/* this gets shown automatically in the formats dropdown */ | |
/* sometimes this is a little bit tricky. delete and recreate "Formats" in the Tinymce Advanced settings */ | |
/* this also can be a programmable alternative: https://codex.wordpress.org/TinyMCE_Custom_Styles */ | |
.Spezial-Button { | |
background-color:red; | |
color:#fff; | |
display: inline-block; | |
color:#fff; | |
text-decoration:none; | |
padding:5px 10px; | |
font-weight:bold; | |
margin:0 5px; | |
} |
<?php | |
add_action('admin_head', function() | |
{ | |
// check user permissions | |
if( !current_user_can('edit_posts') && !current_user_can('edit_pages') ) | |
{ | |
return; | |
} | |
// check if editor is enabled | |
if( get_user_option( 'rich_editing' ) == 'true' ) | |
{ | |
add_filter( 'mce_external_plugins', function($plugin_array) | |
{ | |
$plugin_array['mce_buttons'] = get_stylesheet_directory_uri().'/mce-button.js'; | |
return $plugin_array; | |
}); | |
} | |
}); | |
add_filter('mce_buttons', function($buttons) | |
{ | |
array_push( $buttons, 'mce_button_1' ); | |
array_push( $buttons, 'mce_button_2' ); | |
return $buttons; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
hi can you please tell theme folder example path to put his code? I am new to wordpress