WP_Privacy_Policy_Content::add()public staticWP 4.9.6

Adds content to the postbox shown when editing the privacy policy.

Plugins and themes should suggest text for inclusion in the site's privacy policy. The suggested text should contain information about any functionality that affects user privacy, and will be shown in the Suggested Privacy Policy Content postbox.

Intended for use from wp_add_privacy_policy_content().

Метод класса: WP_Privacy_Policy_Content{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = WP_Privacy_Policy_Content::add( $plugin_name, $policy_text );
$plugin_name(строка) (обязательный)
The name of the plugin or theme that is suggesting content for the site's privacy policy.
$policy_text(строка) (обязательный)
The suggested content for inclusion in the policy.

Список изменений

С версии 4.9.6 Введена.

Код WP_Privacy_Policy_Content::add() WP 6.5.2

public static function add( $plugin_name, $policy_text ) {
	if ( empty( $plugin_name ) || empty( $policy_text ) ) {
		return;
	}

	$data = array(
		'plugin_name' => $plugin_name,
		'policy_text' => $policy_text,
	);

	if ( ! in_array( $data, self::$policy_content, true ) ) {
		self::$policy_content[] = $data;
	}
}