Changeset 43177 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 05/07/2018 05:19:48 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r42871 r43177 811 811 812 812 /** 813 * Filters a t erm.813 * Filters a taxonomy term object. 814 814 * 815 815 * @since 2.3.0 816 * @since 4.4.0 `$_term` can now also be a WP_Termobject.817 * 818 * @param int|WP_Term $_term Term object or ID.819 * @param string 816 * @since 4.4.0 `$_term` is now a `WP_Term` object. 817 * 818 * @param WP_Term $_term Term object. 819 * @param string $taxonomy The taxonomy slug. 820 820 */ 821 821 $_term = apply_filters( 'get_term', $_term, $taxonomy ); 822 822 823 823 /** 824 * Filters a taxonomy .824 * Filters a taxonomy term object. 825 825 * 826 826 * The dynamic portion of the filter name, `$taxonomy`, refers 827 * to the taxonomy slug.827 * to the slug of the term's taxonomy. 828 828 * 829 829 * @since 2.3.0 830 * @since 4.4.0 `$_term` can now also be a WP_Termobject.831 * 832 * @param int|WP_Term $_term Term object or ID.833 * @param string 830 * @since 4.4.0 `$_term` is now a `WP_Term` object. 831 * 832 * @param WP_Term $_term Term object. 833 * @param string $taxonomy The taxonomy slug. 834 834 */ 835 835 $_term = apply_filters( "get_{$taxonomy}", $_term, $taxonomy );
Note: See TracChangeset
for help on using the changeset viewer.