Skip to content

Instantly share code, notes, and snippets.

@matthijs166
Created October 19, 2017 14:06
Show Gist options
  • Save matthijs166/e55d870b92582820cd023e74626dc5fb to your computer and use it in GitHub Desktop.
Save matthijs166/e55d870b92582820cd023e74626dc5fb to your computer and use it in GitHub Desktop.
remove content editor in post catogroies
<?php
function remove_product_editor() {
remove_post_type_support( 'product', 'editor' );
}
add_action( 'init', 'remove_product_editor' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment