Make WordPress Core

Changeset 12932


Ignore:
Timestamp:
02/02/2010 10:58:06 PM (15 years ago)
Author:
ryan
Message:

phpdoc for global_terms(). see #11644

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-functions.php

    r12930 r12932  
    17041704}
    17051705
    1706 /* Global Categories */
     1706/**
     1707 * Maintains a canonical list of terms by syncing terms created for each blog with the global terms table.
     1708 *
     1709 * @since 3.0.0
     1710 *
     1711 * @see term_id_filter
     1712 *
     1713 * @param int $term_id An ID for a term on the current blog.
     1714 * @return int An ID from the global terms table mapped from $term_id.
     1715 */
    17071716function global_terms( $term_id, $deprecated = '' ) {
    17081717    global $wpdb;
Note: See TracChangeset for help on using the changeset viewer.