By default when you click on the sort field in pagination it will sort ascending first, is there a way to set it to descending first?
<th><?php echo $this->Paginator->sort('Views', 'views'); ?></th>
I want my users to see most viewed first after clicking on view sort not least viewed.
To set the default sort direction to be descending, change your code above to this:
<th><?php echo $this->Paginator->sort('Views', 'views, array('direction' => 'desc')); ?></th>
Once activated, the sort direction will toggle between descending and ascending as usual.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With