Message: 4 Date: Fri, 24 Nov 2006 19:18:52 -0700 From: Craig <[EMAIL PROTECTED]> Subject: [wp-testers] Parameter issue? To: [email protected] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=UTF-8; format=flowedI have a theme with the following code in the sidebar.php file: <?php get_links('-1', '<li>', '</li>', '', 0, 'name', 0, 0, -1, 0); ?> I want it to NOT display link descriptions, so I change it to this: <?php get_links('-1', '<li>', '</li>', '', 0, 'name', FALSE, 0, 0, -1, 0); ?> The result is that my blogroll does not show up at all. Is this due to code changes in 2.1 Alpha 3 or is it because I simply don't know what the hell I'm doing? :) Craig.
get_links() deprecated in 2.1. Use wp_list_bookmarks(). _______________________________________________ wp-testers mailing list [email protected] http://lists.automattic.com/mailman/listinfo/wp-testers
