动态挂钩{taxonomy}_term_edit_form_top
可用于输出指向术语存档页的链接。
因为我们正在处理genre
分类,我们将把回调附加到genre_term_edit_form_top
钩
/**
* Adds a link to top of edit term form for terms under the
* genre taxonomy.
*
* @param object $tag Current taxonomy term object.
* @param string $taxonomy Current $taxonomy slug.
*/
add_action( \'genre_term_edit_form_top\', \'wpse_add_genre_link\', 10, 2 );
function wpse_add_genre_link( $tag, $taxonomy ) {
$term_link = get_term_link( $tag ) ; ?>
<div class="term-link-container">
<strong><?php _e( \'See this page:\', \'text-domain\' ); ?></strong>
<a href="<?php echo esc_url( $term_link ) ?>"><?php echo esc_html( $term_link ); ?></a>
<div><?php
}