acf_get_taxonomy_edit_link()
Checks if the current user can edit the taxonomy and returns the edit url.
No Hooks.
Returns
String.
Usage
acf_get_taxonomy_edit_link( $post_id );
- $post_id(int) (required)
- The ACF taxonomy ID.
Changelog
| Since 6.1 | Introduced. |
acf_get_taxonomy_edit_link() acf get taxonomy edit link code ACF 6.8.8
function acf_get_taxonomy_edit_link( $post_id ) {
return acf_get_internal_post_type_edit_link( $post_id, 'acf-taxonomy' );
}