Docs: `_pad_term_counts()` takes an array of objects passed by reference, not term IDs.

Props wpsmith.
Fixes #34174.


git-svn-id: https://develop.svn.wordpress.org/trunk@34884 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-10-06 22:38:47 +00:00
parent 346ebe0993
commit 0d1c1381b3
1 changed files with 1 additions and 1 deletions

View File

@ -3662,7 +3662,7 @@ function _get_term_children( $term_id, $terms, $taxonomy, &$ancestors = array()
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @param array $terms List of term IDs, passed by reference.
* @param array $terms List of term objects, passed by reference.
* @param string $taxonomy Term context.
*/
function _pad_term_counts( &$terms, $taxonomy ) {