Changeset 15590 for trunk/wp-includes/taxonomy.php
- Timestamp:
- 09/07/2010 11:21:11 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r15586 r15590 641 641 * @uses get_term_children() Used to get the children of both $taxonomy and the parent $term 642 642 * 643 * @param string $term ID of Term to get children643 * @param string $term_id ID of Term to get children 644 644 * @param string $taxonomy Taxonomy Name 645 645 * @return array|WP_Error List of Term Objects. WP_Error returned if $taxonomy does not exist … … 816 816 * @uses wp_parse_args() Merges the defaults with those defined by $args and allows for strings. 817 817 * 818 * @param string|array Taxonomy name or list of Taxonomy names818 * @param string|array $taxonomies Taxonomy name or list of Taxonomy names 819 819 * @param string|array $args The values of what to search for when returning terms 820 820 * @return array|WP_Error List of Term Objects and their children. Will return WP_Error, if any of $taxonomies do not exist. … … 1307 1307 * 1308 1308 * @param int $object_id The term Object Id that refers to the term 1309 * @param string|array $taxonom yList of Taxonomy Names or single Taxonomy name.1309 * @param string|array $taxonomies List of Taxonomy Names or single Taxonomy name. 1310 1310 */ 1311 1311 function wp_delete_object_term_relationships( $object_id, $taxonomies ) { … … 1445 1445 * @uses $wpdb 1446 1446 * 1447 * @param int|array $object_id The idof the object(s) to retrieve.1447 * @param int|array $object_ids The ID(s) of the object(s) to retrieve. 1448 1448 * @param string|array $taxonomies The taxonomies to retrieve terms from. 1449 1449 * @param array|string $args Change what is returned … … 1715 1715 * 1716 1716 * @param int $object_id The object to relate to. 1717 * @param array|int|string $term The slug or id of the term, will replace all existing1717 * @param array|int|string $terms The slug or id of the term, will replace all existing 1718 1718 * related terms in this taxonomy. 1719 1719 * @param array|string $taxonomy The context in which to relate the term to the object. … … 2634 2634 * @uses wp_get_object_terms() 2635 2635 * 2636 * @param int $object_id .ID of the object (post ID, link ID, ...)2637 * @param string $taxonomy .Single taxonomy name2636 * @param int $object_id ID of the object (post ID, link ID, ...) 2637 * @param string $taxonomy Single taxonomy name 2638 2638 * @param int|string|array $terms Optional. Term term_id, name, slug or array of said 2639 2639 * @return bool|WP_Error. WP_Error on input error. … … 2680 2680 * 2681 2681 * @param string $object_type Object type string 2682 * @param string $taxonomy .Single taxonomy name2682 * @param string $taxonomy Single taxonomy name 2683 2683 * @return bool True if object is associated with the taxonomy, otherwise false. 2684 2684 */
Note: See TracChangeset
for help on using the changeset viewer.