Changeset 45723 for trunk/src/wp-admin/includes/export.php
- Timestamp:
- 08/03/2019 03:34:54 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/export.php
r45603 r45723 160 160 161 161 $custom_taxonomies = get_taxonomies( array( '_builtin' => false ) ); 162 $custom_terms = (array) get_terms( $custom_taxonomies, array( 'get' => 'all' ) ); 162 $custom_terms = (array) get_terms( 163 array( 164 'taxonomy' => $custom_taxonomies, 165 'get' => 'all', 166 ) 167 ); 163 168 164 169 // Put categories in order with no child going before its parent.
Note: See TracChangeset
for help on using the changeset viewer.