Changeset 31293
- Timestamp:
- 01/29/2015 11:33:02 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/taxonomy.php
r31140 r31293 30 30 31 31 /** 32 * {@internal Missing Short Description}}32 * Get category object for given ID and 'edit' filter context. 33 33 * 34 34 * @since 2.0.0 … … 44 44 45 45 /** 46 * {@internal Missing Short Description}}46 * Add a new category to the database if it does not already exist. 47 47 * 48 48 * @since 2.0.0 … … 190 190 191 191 /** 192 * {@internal Missing Short Description}}192 * Check whether a post tag with a given name exists. 193 193 * 194 194 * @since 2.3.0 … … 202 202 203 203 /** 204 * {@internal Missing Short Description}}204 * Add a new tag to the database if it does not already exist. 205 205 * 206 206 * @since 2.3.0 … … 214 214 215 215 /** 216 * {@internal Missing Short Description}}216 * Get comma-separated list of tags available to edit. 217 217 * 218 218 * @since 2.3.0 219 219 * 220 * @param int $post_id 220 * @param int $post_id 221 * @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'. 221 222 * @return string|bool|WP_Error 222 223 */ … … 226 227 227 228 /** 228 * {@internal Missing Short Description}}229 * Get comma-separated list of terms available to edit for the given post ID. 229 230 * 230 231 * @since 2.8.0 231 232 * 232 * @param int $post_id 233 * @param int $post_id 234 * @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'. 233 235 * @return string|bool|WP_Error 234 236 */ … … 273 275 274 276 /** 275 * {@internal Missing Short Description}}277 * Add a new term to the database if it does not already exist. 276 278 * 277 279 * @since 2.8.0 278 280 * 279 281 * @param int|string $tag_name 282 * @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'. 280 283 * @return array|WP_Error 281 284 */
Note: See TracChangeset
for help on using the changeset viewer.