Inventory_Presser_Taxonomy_Overlapper::hooks_add()
hooks_add
Description Description
Adds hooks to catch updates to meta values and term relationships.
Return Return
(void)
Source Source
File: includes/class-taxonomy-overlapper.php
function hooks_add() { $this->hooks_add_meta(); $this->hooks_add_terms(); add_action( 'invp_taxonomy_overlapper_updated_meta', array( $this, 'update_transmission_speeds_meta' ), 10, 3 ); add_action( 'invp_taxonomy_overlapper_deleted_meta', array( $this, 'delete_transmission_speeds_meta' ), 10, 3 ); add_action( 'invp_taxonomy_overlapper_deleted_meta', array( $this, 'check_for_remaining_term_relationship' ), 11, 3 ); }
Expand full source codeCollapse full source codeView on Github