Function Signature:
wp_privacy_generate_personal_data_export_group_html
Function Description:
Generate a single group for the personal data export report.
Function Examples:
⚠️ Examples below are generated with GPT-3 once every hour. Do not take them too seriously.
Consider them as some extra input in your learning process - reason about them. Will it work? What could fail?
// Example 1: Generating personal data export group HTML for user's email address
$html = wp_privacy_generate_personal_data_export_group_html( 'email', 'user_email', 'User Email' );
echo $html;
// Example 2: Generating personal data export group HTML for user's username
$html = wp_privacy_generate_personal_data_export_group_html( 'text', 'user_login', 'Username' );
echo $html;
// Example 3: Generating personal data export group HTML for user's display name
$html = wp_privacy_generate_personal_data_export_group_html( 'text', 'display_name', 'Display Name' );
echo $html;