I have this code in the sidebar: <li> <h2><?php _e('Recently Sold'); ?></h2> <ul> <?php get_links(5, '<li>', '</li>', '', TRUE, 'url', FALSE); ?> </ul> </li> Code (markup): What can I do to make them show in the order that I add the links instead of in a random order?
if im not mistaken get_links(); has been deprecated since version 2.3 and has been replaced with wp_list_bookmarks();