LLMS_Abstract_Privacy::add_privacy_message()

Add privacy message sample content.


Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/llms.abstract.privacy.php

79
80
81
82
83
84
85
86
87
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() );
        }
    }
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.18.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.