This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php //Do not copy this line of code | |
| add_action( 'admin_init', 'wt_remove_category_mapping_fields', 999 ); | |
| function wt_remove_category_mapping_fields() { | |
| global $wp_filter; | |
| // Remove Facebook Category field (function-based) | |
| remove_action( 'product_cat_edit_form_fields', 'wt_fbfeed_category_form_fields', 10 ); | |
| remove_action( 'product_cat_add_form_fields', 'wt_fbfeed_category_form_fields', 10 ); | |