wp_register_comment_personal_data_exporter

函式
wp_register_comment_personal_data_exporter ( $exporters )
引數
  • (array) $exporters An array of personal data exporters.
    Required:
返回值
  • (array) An array of personal data exporters.
定義位置
相關方法
wp_register_comment_personal_data_eraserwp_register_media_personal_data_exporterwp_register_user_personal_data_exporterwp_comments_personal_data_exporterwp_user_personal_data_exporter
引入
4.9.6
棄用
-

wp_register_comment_personal_data_exporter – 註冊一個回撥函式,當使用者要求匯出他們的個人資料時,處理與評論有關的個人資料。

註冊評論的個人資料匯出器。

function wp_register_comment_personal_data_exporter( $exporters ) {
	$exporters['wordpress-comments'] = array(
		'exporter_friendly_name' => __( 'WordPress Comments' ),
		'callback'               => 'wp_comments_personal_data_exporter',
	);

	return $exporters;
}

常見問題

FAQs
檢視更多 >