Advertisement
michaellevelup

Blocks enabled for products

Mar 14th, 2022
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function wplook_activate_gutenberg_products($can_edit, $post_type){
  2.    
  3.     if($post_type == 'product'){
  4.         $can_edit = true;
  5.     }
  6.  
  7.     return $can_edit;
  8. }
  9.  
  10. add_filter('use_block_editor_for_post_type', 'wplook_activate_gutenberg_products', 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement