Skip to content

Instantly share code, notes, and snippets.

@shubhw12
Created February 16, 2021 05:15
Show Gist options
  • Save shubhw12/efe11e3fdd5f22efdfe42ef81bf25893 to your computer and use it in GitHub Desktop.
Save shubhw12/efe11e3fdd5f22efdfe42ef81bf25893 to your computer and use it in GitHub Desktop.
Add custom styles to TINY MCE Editor
add_action('admin_enqueue_scripts' , 'custom_editor_styles');
function custom_editor_styles( ){
echo '
<style>
.mce-content-body p{
color:red;
}
</style>
';
}
add_editor_style( 'tinymce-style.css' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment