wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
edit_tag_link › WordPress Function
Seit2.7.0
Veraltetn/v
› edit_tag_link ( $link = '', $before = '', $after = '', $tag = null )
| Parameter: (4) |
|
| Definiert in: |
|
| Codex: |
Displays or retrieves the edit link for a tag with formatting.
Quellcode
function edit_tag_link( $link = '', $before = '', $after = '', $tag = null ) {
$link = edit_term_link( $link, '', '', $tag, false );
/**
* Filters the anchor tag for the edit link for a tag (or term in another taxonomy).
*
* @since 2.7.0
*
* @param string $link The anchor tag for the edit link.
*/
echo $before . apply_filters( 'edit_tag_link', $link ) . $after;
}