LLMS_Abstract_Privacy::add_hooks()
Add filters for the registered exporters & erasers.
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.privacy.php
protected function add_hooks() {
add_action( 'admin_init', array( $this, 'add_privacy_message' ) );
add_filter( 'wp_privacy_personal_data_erasers', array( $this, 'register_erasers' ) );
add_filter( 'wp_privacy_personal_data_exporters', array( $this, 'register_exporters' ), 5 );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.18.0 | Introduced. |