How to add the category ID to admin page
The hooks for taxonomies are: “manage_edit-${taxonomy}_columns” for the header “manage_edit-${taxonomy}_sortable_columns” to make columns sortable “manage_${taxonomy}_custom_column” for the cell content To catch all taxonomies write: foreach ( get_taxonomies() as $taxonomy ) { add_action( “manage_edit-${taxonomy}_columns”, ‘t5_add_col’ ); add_filter( “manage_edit-${taxonomy}_sortable_columns”, ‘t5_add_col’ ); add_filter( “manage_${taxonomy}_custom_column”, ‘t5_show_id’, 10, 3 ); } add_action( ‘admin_print_styles-edit-tags.php’, ‘t5_tax_id_style’ ); function t5_add_col( $columns ) { … Read more