assorting links in wp-admin/link-manager.php
-
In the link manager page – the links are sorted by the name I believe.
What I want – for ease of use – is to sort those by Category, then within the categories, I’d like them sorted by name.
In the link-manager.php file on line… 658 (ish) there is this
$sql .= ‘ ORDER BY link_’ . $sqlorderby;
I changed mine to this:
$sql .= ‘ ORDER BY cat_’ . $sqlorderby;
Now – it is ordering by category but the links in the categories are just like randomly sorted.
How do I add a thing like… first sort by category, then my name within each category.
thanks – rYno
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘assorting links in wp-admin/link-manager.php’ is closed to new replies.