Changeset 30994
- Timestamp:
- 12/28/2014 01:43:47 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r30993 r30994 1649 1649 * @since 3.1.0 1650 1650 * 1651 * @param array 1652 * @param string|array $taxonomies A taxonomy orarray of taxonomies.1651 * @param array $args An array of arguments. 1652 * @param array $taxonomies An array of taxonomies. 1653 1653 */ 1654 1654 $args = apply_filters( 'get_terms_args', $args, $taxonomies ); … … 1687 1687 * @since 2.3.0 1688 1688 * 1689 * @param array 1690 * @param string|array $taxonomies A taxonomy orarray of taxonomies.1691 * @param array 1689 * @param array $cache Cached array of terms for the given taxonomy. 1690 * @param array $taxonomies An array of taxonomies. 1691 * @param array $args An array of arguments to get terms. 1692 1692 */ 1693 1693 $cache = apply_filters( 'get_terms', $cache, $taxonomies, $args ); … … 1719 1719 * @since 2.8.0 1720 1720 * 1721 * @param string 1722 * @param array 1723 * @param string|array $taxonomies A taxonomy orarray of taxonomies.1721 * @param string $orderby ORDERBY clause of the terms query. 1722 * @param array $args An array of terms query arguments. 1723 * @param array $taxonomies An array of taxonomies. 1724 1724 */ 1725 1725 $orderby = apply_filters( 'get_terms_orderby', $orderby, $args, $taxonomies ); … … 1786 1786 * @since 2.3.0 1787 1787 * 1788 * @param string 1789 * @param array 1790 * @param string|array $taxonomies A taxonomy orarray of taxonomies.1788 * @param string $exclusions NOT IN clause of the terms query. 1789 * @param array $args An array of terms query arguments. 1790 * @param array $taxonomies An array of taxonomies. 1791 1791 */ 1792 1792 $exclusions = apply_filters( 'list_terms_exclusions', $exclusions, $args, $taxonomies ); … … 1878 1878 * @since 2.8.0 1879 1879 * 1880 * @param array 1881 * @param array 1882 * @param string|array $taxonomies A taxonomy orarray of taxonomies.1880 * @param array $selects An array of fields to select for the terms query. 1881 * @param array $args An array of term query arguments. 1882 * @param array $taxonomies An array of taxonomies. 1883 1883 */ 1884 1884 $fields = implode( ', ', apply_filters( 'get_terms_fields', $selects, $args, $taxonomies ) ); … … 1893 1893 * @since 3.1.0 1894 1894 * 1895 * @param array 1896 * @param string|array $taxonomies A taxonomy orarray of taxonomies.1897 * @param array 1895 * @param array $pieces Terms query SQL clauses. 1896 * @param array $taxonomies An array of taxonomies. 1897 * @param array $args An array of terms query arguments. 1898 1898 */ 1899 1899 $clauses = apply_filters( 'terms_clauses', compact( $pieces ), $taxonomies, $args );
Note: See TracChangeset
for help on using the changeset viewer.