Changeset 28421 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 05/15/2014 05:24:54 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r28415 r28421 3686 3686 * @param array $args Override the defaults. 3687 3687 */ 3688 function the_taxonomies( $args = array()) {3688 function the_taxonomies( $args = array() ) { 3689 3689 $defaults = array( 3690 3690 'post' => 0, … … 3696 3696 3697 3697 $r = wp_parse_args( $args, $defaults ); 3698 extract( $r, EXTR_SKIP ); 3699 3700 echo $before . join($sep, get_the_taxonomies($post, $r)) . $after; 3698 3699 echo $r['before'] . join( $r['sep'], get_the_taxonomies( $r['post'], $r ) ) . $r['after']; 3701 3700 } 3702 3701
Note: See TracChangeset
for help on using the changeset viewer.