Changeset 5726 for trunk/wp-includes/post.php
- Timestamp:
- 06/19/2007 12:33:44 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r5708 r5726 441 441 $args = wp_parse_args( $args, $defaults ); 442 442 443 $cats = get_object_terms($post_id, 'category', $args);443 $cats = wp_get_object_terms($post_id, 'category', $args); 444 444 return $cats; 445 445 } … … 451 451 $args = wp_parse_args( $args, $defaults ); 452 452 453 $tags = get_object_terms($post_id, 'post_tag', $args);453 $tags = wp_get_object_terms($post_id, 'post_tag', $args); 454 454 455 455 return $tags;
Note: See TracChangeset
for help on using the changeset viewer.