Skip to content

Instantly share code, notes, and snippets.

@NatalieMac
Last active August 29, 2015 13:57
Show Gist options
  • Save NatalieMac/9439699 to your computer and use it in GitHub Desktop.
Save NatalieMac/9439699 to your computer and use it in GitHub Desktop.
<?php
function alphaindex_alpha_tax() {
register_taxonomy( 'alpha',array (
0 => 'song',
),
array( 'hierarchical' => false,
'label' => 'Alpha',
'show_ui' => false,
'query_var' => true,
'show_admin_column' => false,
) );
}
add_action('init', 'alphaindex_alpha_tax');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment