WordPress 3.0: Code Snippets
Jean-Baptiste Jung postet 8 Code Snipptes für das kommende WordPress 3.0.
Da sind ein paar spannende Sachen möglich. In diesem Blog wird allerdings nur eine Änderung vorgenommen werden:
WordPress 3.0 is going to feature a totally new menu system, which will allow users to add only the desired pages, add categories, and more. Good news for theme developers; adding WP 3.0 menu support to your themes is extremely easy.
To do so, open functions.php and add the following line:
add_theme_support( 'nav-menus' );Once added, you can use the brand new wp_nav_menu() function in your theme files:
wp_nav_menu('sort_column=menu_order&container_class=navigation');

