Localization of taxonomies
-
I’m localizing a theme i’m working on. The localization works fine except for the taxonomies and the custom post types. Both keep displaying in the default language.
Anyone who can tell me what could be the reason for that?
This is the function I use for the taxonomy:
function build_taxonomies(){ register_taxonomy( __( "skill-type" ), array(__( "portfolio" )), array( "hierarchical" => true, "label" => __( "Skill Types" ), "singular_label" => __( "Skill Type" ), "rewrite" => array('slug' => 'skill-type', 'hierarchical' => true))); }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Localization of taxonomies’ is closed to new replies.