WP_Privacy_Policy_Content::policy_text_changed_notice()

In this article

Outputs a warning when some privacy info has changed.

Source

public static function policy_text_changed_notice() {
	$screen = get_current_screen()->id;

	if ( 'privacy' !== $screen ) {
		return;
	}

	$privacy_message = sprintf(
		/* translators: %s: Privacy Policy Guide URL. */
		__( 'The suggested privacy policy text has changed. Please <a href="%s">review the guide</a> and update your privacy policy.' ),
		esc_url( admin_url( 'privacy-policy-guide.php?tab=policyguide' ) )
	);

	wp_admin_notice(
		$privacy_message,
		array(
			'type'               => 'warning',
			'additional_classes' => array( 'policy-text-updated' ),
			'dismissible'        => true,
		)
	);
}

Changelog

VersionDescription
4.9.6Introduced.

User Contributed Notes

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