AND get_terms() field queries

git-svn-id: http://svn.automattic.com/wordpress/trunk@5807 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2007-07-17 02:02:52 +00:00
parent 460ddd3a1d
commit 7217266ca3
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -540,7 +540,7 @@ class wp_xmlrpc_server extends IXR_Server {
return($this->error);
}
$args = array('get' => 'all', 'number' => $max_results, 'name_like' => $category);
$args = array('get' => 'all', 'number' => $max_results, 'name__like' => $category);
$category_suggestions = get_categories($args);
return($category_suggestions);