* Add a message in the WP Privacy Policy Guide page.
34
*
35
* @access public
36
* @static
37
*/
38
public static function add_privacy_policy_guide_content() {
39
if ( function_exists( 'wp_add_privacy_policy_content' ) ) {
40
wp_add_privacy_policy_content( esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), self::get_privacy_policy_guide_message() );
41
}
42
} // END add_privacy_policy_guide_content()
43
44
/**
45
* Message to add in the WP Privacy Policy Guide page.
46
*
47
* @access protected
48
* @static
49
* @return string
50
*/
51
protected static function get_privacy_policy_guide_message() {
52
$content = '
53
<div class="wp-suggested-text">' .
54
'<p class="privacy-policy-tutorial">' .
55
sprintf( __( '%s does not collect, store or share any personal data.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ) .