Advertisement
Udoro

Disable Gutenberg

Apr 7th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. // disable gutenberg for posts
  2. //========================
  3. add_filter('use_block_editor_for_post', '__return_false', 10);
  4. // disable gutenberg for post types
  5. //===========================
  6. add_filter('use_block_editor_for_post_type', '__return_false', 10);
  7. //*****--- Remove Gutenberg Block Library CSS from loading on the frontend ---*****
  8. //===================================================================
  9. function smartwp_remove_wp_block_library_css(){
  10. wp_dequeue_style( 'wp-block-library' );
  11. wp_dequeue_style( 'wp-block-library-theme' );
  12. }
  13. add_action( 'wp_enqueue_scripts', 'smartwp_remove_wp_block_library_css' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement