Sort by Counts
-
If you want to sort the data in the overview by counts, just modify the sort_data function in the page-visit-counter/includes/class-tt-pvc-list-table.php to:
private function sort_data( $a, $b )
{
return $b[‘count’] – $a[‘count’];
}
}
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Sort by Counts’ is closed to new replies.