Inventory_Presser_Taxonomy_Overlapper::hooks_remove_meta()
hooks_remove_meta
Contents
Description Description
Removes the hooks from post meta adds, updates, and deletes.
Return Return
(void)
Source Source
File: includes/class-taxonomy-overlapper.php
function hooks_remove_meta() { remove_action( 'updated_postmeta', array( $this, 'maintain_taxonomy_terms_during_meta_updates' ), 10, 4 ); remove_action( 'added_post_meta', array( $this, 'maintain_taxonomy_terms_during_meta_updates' ), 10, 4 ); remove_action( 'deleted_post_meta', array( $this, 'maintain_taxonomy_terms_during_meta_updates' ), 10, 4 ); }
Expand full source code Collapse full source code View on Github