Changeset 28653 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 06/03/2014 03:52:46 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r28618 r28653 3767 3767 * @since 2.5.0 3768 3768 * 3769 * @param int|WP_Post $post Optional. Post ID or post object.3769 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`. 3770 3770 * @param array $args Override the defaults. 3771 * @return array 3771 * @return array List of taxonomies. 3772 3772 */ 3773 3773 function get_the_taxonomies( $post = 0, $args = array() ) { … … 3816 3816 * 3817 3817 * @since 2.5.0 3818 * 3818 3819 * @uses get_object_taxonomies() 3819 3820 * 3820 * @param int|WP_Post $post Optional. Post ID or post object.3821 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`. 3821 3822 * @return array 3822 3823 */ 3823 function get_post_taxonomies( $post = 0) {3824 function get_post_taxonomies( $post = 0 ) { 3824 3825 $post = get_post( $post ); 3825 3826
Note: See TracChangeset
for help on using the changeset viewer.