Is it possible to automatically sort the table based on one predefined column? I've found something about sortable-onload-N but i don't know how to use it with wordpress.
Thanks,
Alex
Is it possible to automatically sort the table based on one predefined column? I've found something about sortable-onload-N but i don't know how to use it with wordpress.
Thanks,
Alex
Hi,
although a long time has passed since your question i'm posting a solution for this:
- edit manually wp-table.php
- go to line 133
- insert "sortable-onload-{column-id}[-reverse]"
The following sorts the table after the values in column 4 in reverse order:
$tbl_header .= "\n".'<table class="wptable sortable-onload-4-reverse rowstyle-alt" id="wptable-'.$table_id.'" '.$act_cellspace.$act_cellpad.'>'."\n";
Hope that helps...
This topic has been closed to new replies.