logo

Test

function kofi_debug_status_shortcode() {
if (!is_user_logged_in()) {
return ‚Bitte melde dich an.‘;
}

$user_id = get_current_user_id();
$kofi_status = get_user_meta($user_id, ‚kofi_supporter‘, true);

return ‚Ko-Fi Status: ‚ . ($kofi_status ? $kofi_status : ‚Kein Eintrag‘);
}
add_shortcode(‚kofi_debug‘, ‚kofi_debug_status_shortcode‘);