get_edit_term_link()
Retrieves the URL for editing a given term.
Uses: admin_url(), add_query_arg()
Used By: edit_term_link()
1 time — 0.000355 sec (fast) | 50000 times — 2 sec (fast) | PHP 7.0.2, WP 4.4.2
Hooks from the function
Return
String|null
. The edit term link URL for the given term, or null on failure.
Usage
get_edit_term_link( $term, $taxonomy, $object_type );
- $term(int|WP_Term|object) (required)
- The ID or term object whose edit link will be retrieved.
- $taxonomy(string)
- Taxonomy.
Default: taxonomy of the term identified by $term - $object_type(string)
- The object type. Used to highlight the proper post type menu on the linked page.
Default: first object_type associated with the taxonomy
Changelog
Since 3.1.0 | Introduced. |
Since 4.5.0 | The $taxonomy parameter was made optional. |