Last active
August 29, 2015 14:27
-
-
Save cdmz/59f29ad3a0e51a19b982 to your computer and use it in GitHub Desktop.
register taxonomy wordpress
This file contains hidden or 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( 'apresentacao', | |
array( 'programacao' ), | |
array( | |
'hierarchical' => true, | |
'show_ui' => true, | |
'query_var' => true, | |
'show_admin_column' => false, | |
'labels' => array ( | |
'name' => __( 'Apresentações', 'Sesc Bienal' ), | |
'singular_name' => __( 'Apresentação', 'Sesc Bienal' ), | |
'search_items' => __( 'Apresentações', 'Sesc Bienal' ), | |
'add_new_item' => __( 'Adicionar nova Apresentações', 'Sesc Bienal' ), | |
'menu_name' => __( 'Apresentações', 'Sesc Bienal' ), | |
) | |
)); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment