W3cubDocs

/WordPress

get_tags_to_edit( int $post_id, string $taxonomy = 'post_tag' )

Get comma-separated list of tags available to edit.

Parameters

$post_id

(int) (Required)

$taxonomy

(string) (Optional) The taxonomy for which to retrieve terms.

Default value: 'post_tag'

Return

(string|bool|WP_Error)

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 );
}

Changelog

Version Description
2.3.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_tags_to_edit