Changeset 28975
- Timestamp:
- 07/03/2014 07:21:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/taxonomy.php
r28561 r28975 57 57 58 58 /** 59 * {@internal Missing Short Description}}60 * 61 * @since 2.0.0 62 * 63 * @param unknown_type $categories64 * @param unknown_type $post_id65 * @return unknown66 */ 67 function wp_create_categories( $categories, $post_id = '') {59 * Create categories for the given post. 60 * 61 * @since 2.0.0 62 * 63 * @param array $categories List of categories to create. 64 * @param int $post_id Optional. The post ID. Default empty. 65 * @return List of categories to create for the given post. 66 */ 67 function wp_create_categories( $categories, $post_id = '' ) { 68 68 $cat_ids = array (); 69 69 foreach ($categories as $category) {
Note: See TracChangeset
for help on using the changeset viewer.