Make WordPress Core


Ignore:
Timestamp:
05/08/2008 07:19:58 PM (18 years ago)
Author:
ryan
Message:

Use array calling style. see #6647

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/bookmark-template.php

    r6828 r7911  
    173173    if ( $categorize ) {
    174174        //Split the bookmarks into ul's for each category
    175         $cats = get_terms('link_category', "category_name=$category_name&include=$category&orderby=$category_orderby&order=$category_order&hierarchical=0");
     175        $cats = get_terms('link_category', array('category_name' => $category_name, 'include' => $category, 'orderby' => $category_orderby, 'order' => $category_order, 'hierarchical' => 0));
    176176
    177177        foreach ( (array) $cats as $cat ) {
Note: See TracChangeset for help on using the changeset viewer.