Skip to content

Instantly share code, notes, and snippets.

@rafaehlers
Last active January 28, 2022 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaehlers/97ecf9b90d987fe576a33d5ae8b90929 to your computer and use it in GitHub Desktop.
Save rafaehlers/97ecf9b90d987fe576a33d5ae8b90929 to your computer and use it in GitHub Desktop.
Add a title to the CSV exported file
<?php //DO NOT LINE
add_filter('gfexcel_renderer_matrix', static function (array $rows) {
// Make up the title
$title = 'text';
// Wrap in array to become a row.
$title = [$title];
array_unshift($rows, $title);
return $rows;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment