This file contains 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 | |
register_taxonomy( 'uh_service_type_taxonomy', array( 'contact_cpt' ), $args ); | |
// add and 'Order' column to Service Type taxonomy terms | |
add_filter("manage_edit-uh_service_type_taxonomy_columns", "on_manage_edit_uh_service_type_taxonomy_columns"); | |
function on_manage_edit_uh_service_type_taxonomy_columns( $columns ) { | |
$columns['term_order'] = __('Order'); | |
return $columns; | |
} |