Advertisement
GochiSiyan

remove some element

Apr 26th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. add_action('admin_head',function () {
  2. ?>
  3. <style>
  4. .mce-container.mce-toolbar [aria-label="Grid Builder"] {
  5. display: none;
  6. }
  7.  
  8. .mce-container.mce-toolbar [aria-label="Intro"] {
  9. display: none;
  10. }
  11.  
  12. .mce-container.mce-toolbar [aria-label="Dropcap"] {
  13. display: none;
  14. }
  15.  
  16. .mce-container.mce-toolbar [aria-label="Highlight"] {
  17. display: none;
  18. }
  19.  
  20. .mce-container.mce-toolbar [aria-label="Pullquote"] {
  21. display: none;
  22. }
  23.  
  24. .mce-container.mce-toolbar [aria-label="Alert"] {
  25. display: none;
  26. }
  27.  
  28. .mce-container.mce-toolbar [aria-label="Button"] {
  29. display: none;
  30. }
  31.  
  32. .mce-container.mce-toolbar [aria-label="Spacing"] {
  33. display: none;
  34. }
  35.  
  36. .mce-container.mce-toolbar [aria-label="JNews Generator"] {
  37. display: none;
  38. }
  39.  
  40. .mce-container.mce-toolbar [aria-label="Weather"] {
  41. display: none;
  42. }
  43. </style>
  44. <?php
  45. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement