VaultPress::postmeta_insert_handler PHP Method

postmeta_insert_handler() public method

Handle Notifying VaultPress of PostMeta changes via newfangled metadata functions
public postmeta_insert_handler ( $meta_id, $post_id, $meta_key, $meta_value = '' )
    function postmeta_insert_handler($meta_id, $post_id, $meta_key, $meta_value = '')
    {
        if (in_array($meta_key, $this->get_post_meta_name_ignore())) {
            return;
        }
        $this->add_ping('db', array('postmeta' => $meta_id));
    }
VaultPress