LLMS_Abstract_Privacy::add_privacy_message()
Add privacy message sample content.
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.privacy.php
public function add_privacy_message() { if ( function_exists( 'wp_add_privacy_policy_content' ) ) { $content = $this->get_privacy_message(); if ( $content ) { wp_add_privacy_policy_content( $this->name, $this->get_privacy_message() ); } } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.18.0 | Introduced. |