Summery Summery
Get comma-separated list of tags available to edit.
Syntax Syntax
Parameters Parameters
- $post_id
-
(Required)
- $taxonomy
-
(Optional) The taxonomy for which to retrieve terms. Default 'post_tag'.
Default value: 'post_tag'
Return Return
(string|bool|WP_Error)
Source Source
File: wp-admin/includes/taxonomy.php
function get_tags_to_edit( $post_id, $taxonomy = 'post_tag' ) { return get_terms_to_edit( $post_id, $taxonomy ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |