I have registered a new taxonomy term using the same code on two different sites. On one site (a vanilla install), If I go to my taxonomy term in the admin menu, I see a ‘slug’ option for the add category screen. On my other site, with all plugins disabled, this slug option does not appear.
Anyone know what might cause this?
Register taxonomy code:
register_taxonomy( 'my_topics',
array( 'post', 'page' ),
array( 'hierarchical' => true,
'label' => 'my Categories',
'query_var' => 'topics',
'rewrite' => array('slug' => 'topics')
) );
The value for global_terms_enabled for multisite is stored in wp_sitemeta
http://wordpress.org/support/topic/plugin-edit-category-slug-wpmu-how-to-make-it-work-with-last-wpmu-30
I switched this to off and the category slug field reappears. If anyone can comment on whether its safe to switch this off, that would be greatly appreciated.