Changeset 40917 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 06/20/2017 06:27:53 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r40916 r40917 1248 1248 * @global wpdb $wpdb WordPress database abstraction object. 1249 1249 * 1250 * @param int $term_id 1251 * @return array|false 1250 * @param int $term_id Term ID. 1251 * @return array|false Array with meta data, or false when the meta table is not installed. 1252 1252 */ 1253 1253 function has_term_meta( $term_id ) { … … 1817 1817 * @since 2.0.0 1818 1818 * 1819 * @param int $cat_ID 1819 * @param int $cat_ID Category term ID. 1820 1820 * @return bool|int|WP_Error Returns true if completes delete action; false if term doesn't exist; 1821 1821 * Zero on attempted deletion of default Category; WP_Error object is also a possibility. … … 3821 3821 * @since 4.4.0 3822 3822 * 3823 * @param int $term_id 3824 * @return bool 3823 * @param int $term_id Term ID. 3824 * @return bool Returns false if a term is not shared between multiple taxonomies or 3825 * if splittng shared taxonomy terms is finished. 3825 3826 */ 3826 3827 function wp_term_is_shared( $term_id ) {
Note: See TracChangeset
for help on using the changeset viewer.