Files
sportspress/position.php
2013-11-25 11:32:39 +11:00

18 lines
552 B
PHP

<?php
function sp_pos_tax_init() {
$name = __( 'Positions', 'sportspress' );
$singular_name = __( 'Position', 'sportspress' );
$lowercase_name = __( 'position', 'sportspress' );
$object_type = array( 'sp_player', 'sp_staff' );
$labels = sp_tax_labels( $name, $singular_name, $lowercase_name );
$args = array(
'label' => $name,
'labels' => $labels,
'public' => true,
'hierarchical' => true,
'rewrite' => array( 'slug' => 'position' ),
);
register_taxonomy( 'sp_pos', $object_type, $args );
}
add_action( 'init', 'sp_pos_tax_init' );
?>