Skip to content

Commit

Permalink
cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hjanuschka committed Jan 17, 2019
1 parent 44eccd4 commit 5610540
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public function add_actions()
//Remove Gutenberg Markting spam
remove_action('try_gutenberg_panel', 'wp_try_gutenberg_panel');

//Disable Gutenberg completly
add_filter('use_block_editor_for_post', '__return_false', 10);
// disable Gutenberg completely
add_filter('use_block_editor_for_post', '__return_false', 10);

// disable for post types
add_filter('use_block_editor_for_post_type', '__return_false', 10);
// disable for post types
add_filter('use_block_editor_for_post_type', '__return_false', 10);

//Elastic Search
//Reformat the query to support wildcards and order by date
Expand Down

0 comments on commit 5610540

Please sign in to comment.