Skip to content

Instantly share code, notes, and snippets.

View jeremyjaymes's full-sized avatar

Jeremy jeremyjaymes

View GitHub Profile
@jeremyjaymes
jeremyjaymes / tax-id-column.php
Last active August 29, 2015 14:02
Custom "Tax ID" Column for WordPress Admin Columns
//* Show the taxonomy ID
add_filter( "manage_edit-my_tax_columns", 'my_add_col' );
add_filter( "manage_edit-my_tax_sortable_columns", 'my_add_col' );
add_filter( "manage_my_tax_custom_column", 'my_tax_id', 10, 3 );
function my_add_col( $new_columns ) {
$new_columns = array(
'cb' => '<input type="checkbox" />',
'name' => __('Name'),