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