edit include/sites.php
Locate near line #49
| Code: |
order by
hits_in desc
|
Change to
| Code: |
order by
added desc
|
The old site had a FAQ entry regarding this. Basically you can sort by any column name. You can even sort by 2 columns.
Valid column names are ..
site_name, site_url, added, last_update, site_description , country, hits_in, hits_out, total_reviews
Sorted alphabetically ...
| Code: |
order by
site_name desc
|
Sorted most recently updated, which is just liked added, but allows you to "bump" sites up by editing their entries in the admin panel.
| Code: |
order by
last_update desc
|
Sorted by most hits in, then most hits out..
| Code: |
order by
hits_in desc, hits_out desc
|
Sorted by site with most reviews, then by oldest first
| Code: |
order by
total_reviews desc, added asc
|