
Вставляем свою ссылку в Taxonomy \ Категорию row actions блок.
Чтобы вставить кастомную ссылку в меню категории. она же таксономия (row actions) понадобится всего лишь 1 хук category_row_actions
В данном примере мы вставим линк между Edit и View.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'category_row_actions', 'zl_actions_rows' , 10 ,2 ); | |
public function 'zl_actions_rows' ( $actions, $category ) { | |
$new_actions = array(); | |
$new_actions['edit'] = $actions['edit']; | |
$new_actions['template'] = '<a href="#" aria-label="' . __( ‘Custom Link', zl) . '">' . __( ‘Custom Link', zl) . '</a>'; | |
$new_actions['view'] = $actions['view']; | |
$new_actions['inline hide-if-no-js'] = $actions['inline hide-if-no-js']; | |
return $new_actions; | |
} |