Changeset 4620 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/cli/class-import.php
- Timestamp:
- 01/10/2017 08:33:47 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/cli/class-import.php
r4565 r4620 133 133 134 134 // Set categories if there aren't any yet. wp-admin takes precedent. 135 if ( ! wp_get_ post_terms( $plugin->ID, 'plugin_category', array( 'fields' => 'ids' ) ) ) {136 wp_set_ post_terms( $plugin->ID, Tag_To_Category::map( $readme->tags ), 'plugin_category' );135 if ( ! wp_get_object_terms( $plugin->ID, 'plugin_category', array( 'fields' => 'ids' ) ) ) { 136 wp_set_object_terms( $plugin->ID, Tag_To_Category::map( $readme->tags ), 'plugin_category' ); 137 137 } 138 138 139 139 // Set tags from the readme 140 wp_set_ post_terms( $plugin->ID, $readme->tags, 'plugin_tags' );140 wp_set_object_terms( $plugin->ID, $readme->tags, 'plugin_tags' ); 141 141 142 142 // Update the contributors list 143 wp_set_ post_terms( $plugin->ID, $readme->contributors, 'plugin_contributors' );143 wp_set_object_terms( $plugin->ID, $readme->contributors, 'plugin_contributors' ); 144 144 145 145 // Update the committers list … … 147 147 148 148 if ( in_array( 'adopt-me', $readme->tags ) ) { 149 wp_set_ post_terms( $plugin->ID, array( 74 /* Term ID for adopt-me */ ), 'plugin_section' );149 wp_set_object_terms( $plugin->ID, 'adopt-me', 'plugin_section' ); 150 150 } 151 151
Note: See TracChangeset
for help on using the changeset viewer.