Skip to content

Instantly share code, notes, and snippets.

@sscovil
Last active December 19, 2015 07:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sscovil/5919849 to your computer and use it in GitHub Desktop.
Save sscovil/5919849 to your computer and use it in GitHub Desktop.
Example of how to add a header row to the table data array, using my CSV-to-SortTable plugin for WordPress. Add this to your `functions.php` file.
<?php
/**
* CSV to SortTable: Add Header Row
*
* @param array $data
* @return array
*/
function csv_to_sorttable_add_header_row( $data ) {
$header_row = array( 'Column 1', 'Column 2', 'Column 3' );
array_unshift( $data, $header_row );
return $data;
}
add_filter( 'csv_to_sorttable_data_array', 'csv_to_sorttable_add_header_row' );
@sscovil
Copy link
Author

sscovil commented Jul 3, 2013

@nightbook
Copy link

Thank you, very helpful when hootsuite scheduled messages downloads as a csv with no header row.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment