Created
August 25, 2010 16:56
-
-
Save basilio/549852 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Sort bookmarks by rating | |
*/ | |
function av_sort_bookmarks_by_rating($links){ | |
foreach($links as $item) $new_list_links[$item->link_rating] = $item; | |
sort($new_list_links); | |
return $new_list_links; | |
} | |
add_filter("get_bookmarks", "av_sort_bookmarks_by_rating"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment