id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,focuses 13797,get_terms orderby none bug,thomask,,"get_terms returns nothing when using urderby 'none' as per http://codex.wordpress.org/Function_Reference/get_terms it should sort terms by id the problem is this code in taxonomy.php {{{ 880 else if ( 'none' == $_orderby ) 881 $orderby = ''; 882 elseif ( empty($_orderby) || 'id' == $_orderby ) 883 $orderby = 't.term_id'; }}} easiest repair would be probably {{{ 880 --- delete --- 881 --- delete --- 882 elseif ( empty($_orderby) || 'none' == $_orderby || 'id' == $_orderby ) 883 $orderby = 't.term_id'; }}} ",defect (bug),closed,normal,,Taxonomy,3.0,trivial,worksforme,has-patch,,