Changeset 30654
- Timestamp:
- 11/30/2014 11:59:26 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r30622 r30654 1340 1340 * Filter a taxonomy. 1341 1341 * 1342 * The dynamic portion of the filter name, $taxonomy, refers1342 * The dynamic portion of the filter name, `$taxonomy`, refers 1343 1343 * to the taxonomy slug. 1344 1344 * … … 2191 2191 * Filter a term field to edit before it is sanitized. 2192 2192 * 2193 * The dynamic portion of the filter name, $field, refers to the term field.2193 * The dynamic portion of the filter name, `$field`, refers to the term field. 2194 2194 * 2195 2195 * @since 2.3.0 … … 2204 2204 * Filter the taxonomy field to edit before it is sanitized. 2205 2205 * 2206 * The dynamic portions of the filter name, $taxonomy, and $field, refer2206 * The dynamic portions of the filter name, `$taxonomy` and `$field`, refer 2207 2207 * to the taxonomy slug and taxonomy field, respectively. 2208 2208 * … … 2222 2222 * Filter a term field value before it is sanitized. 2223 2223 * 2224 * The dynamic portion of the filter name, $field, refers to the term field.2224 * The dynamic portion of the filter name, `$field`, refers to the term field. 2225 2225 * 2226 2226 * @since 2.3.0 … … 2234 2234 * Filter a taxonomy field before it is sanitized. 2235 2235 * 2236 * The dynamic portions of the filter name, $taxonomy, and $field, refer2236 * The dynamic portions of the filter name, `$taxonomy` and `$field`, refer 2237 2237 * to the taxonomy slug and field name, respectively. 2238 2238 * … … 2261 2261 * Filter the term field for use in RSS. 2262 2262 * 2263 * The dynamic portion of the filter name, $field, refers to the term field.2263 * The dynamic portion of the filter name, `$field`, refers to the term field. 2264 2264 * 2265 2265 * @since 2.3.0 … … 2273 2273 * Filter the taxonomy field for use in RSS. 2274 2274 * 2275 * The dynamic portions of the hook name, $taxonomy, and $field, refer2275 * The dynamic portions of the hook name, `$taxonomy`, and $field, refer 2276 2276 * to the taxonomy slug and field name, respectively. 2277 2277 * … … 2287 2287 * Filter the term field sanitized for display. 2288 2288 * 2289 * The dynamic portion of the filter name, $field, refers to the term field name.2289 * The dynamic portion of the filter name, `$field`, refers to the term field name. 2290 2290 * 2291 2291 * @since 2.3.0 … … 2301 2301 * Filter the taxonomy field sanitized for display. 2302 2302 * 2303 * The dynamic portions of the filter name, $taxonomy, and $field, refer2303 * The dynamic portions of the filter name, `$taxonomy`, and $field, refer 2304 2304 * to the taxonomy slug and taxonomy field, respectively. 2305 2305 * … … 2534 2534 * Fires after a term in a specific taxonomy is deleted. 2535 2535 * 2536 * The dynamic portion of the hook name, $taxonomy, refers to the specific2536 * The dynamic portion of the hook name, `$taxonomy`, refers to the specific 2537 2537 * taxonomy the term belonged to. 2538 2538 * … … 2542 2542 * @param int $tt_id Term taxonomy ID. 2543 2543 * @param mixed $deleted_term Copy of the already-deleted term, in the form specified 2544 * by the parent function. WP_Errorotherwise.2544 * by the parent function. {@see WP_Error} otherwise. 2545 2545 */ 2546 2546 do_action( "delete_$taxonomy", $term, $tt_id, $deleted_term ); … … 2926 2926 * Fires after a new term is created for a specific taxonomy. 2927 2927 * 2928 * The dynamic portion of the hook name, $taxonomy, refers2928 * The dynamic portion of the hook name, `$taxonomy`, refers 2929 2929 * to the slug of the taxonomy the term was created for. 2930 2930 * … … 3458 3458 * cache has been cleaned. 3459 3459 * 3460 * The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.3460 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. 3461 3461 * 3462 3462 * @since 2.3.0 … … 3487 3487 * cache has been cleaned. 3488 3488 * 3489 * The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.3489 * The dynamic portion of the hook name, `$taxonomy`, refers to the taxonomy slug. 3490 3490 * 3491 3491 * @since 2.3.0
Note: See TracChangeset
for help on using the changeset viewer.