wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_edit_tag_link › WordPress Function

Seit2.7.0
Veraltetn/v
get_edit_tag_link ( $tag, $taxonomy = 'post_tag' )
Parameter: (2)
  • (int|WP_Term|object) $tag The ID or term object whose edit link will be retrieved.
    Erforderlich: Ja
  • (string) $taxonomy Optional. Taxonomy slug. Default 'post_tag'.
    Erforderlich: Nein
    Standard: 'post_tag'
Gibt zurück:
  • (string) The edit tag link URL for the given tag.
Definiert in:
Codex:

Retrieves the edit link for a tag.



Quellcode

function get_edit_tag_link( $tag, $taxonomy = 'post_tag' ) {
	/**
	 * Filters the edit link for a tag (or term in another taxonomy).
	 *
	 * @since 2.7.0
	 *
	 * @param string $link The term edit link.
	 */
	return apply_filters( 'get_edit_tag_link', get_edit_term_link( $tag, $taxonomy ) );
}