LLMS_Abstract_Privacy::add_hooks()
Add filters for the registered exporters & erasers.
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.privacy.php
64 65 66 67 68 69 70 | 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. |