Sort links by rating
-
Hello! I am trying to sort my links by the rating I have given them. I have 2 sets of links and [coincidentally] 2 sets of problems.
Set 1: “Blogrolling”
Appears to be ordering the links randomly. Refreshing the page changes the order of some or all of the links.
Set 2: “More Eve”
Appears to be sorting by alpha order only.I am using code referenced from this page: http://codex.wordpress.org/Template_Tags/get_links
My code:
<div id=”blogroll”>
<h3>Blogroll</h3>
”- “
<?php wp_get_links(1, ‘rating’); ?>
““
</div><div id=”eve”>
<h3>More Eve</h3>
”- “
<?php wp_get_links(2, ‘rating’); ?>
““
</div>
* The “” are not there in the code, just wanted those to be able to show up here.
Any help? Thanks in advance!
The topic ‘Sort links by rating’ is closed to new replies.