I can’t get any custom taxonomy to carry over.. I’ve followed almost every post you’ve posted on about SWT & custom taxonomies Ron… I’ve tweaked everything possible.
I have on both blogs (for safe measure)
function my_swt_custom_tax_filtertwo( $taxonomies ) {
$taxonomies[] = 'placecategory';
return $taxonomies;
}
add_filter( 'sitewide_tags_custom_taxonomies', 'my_swt_custom_tax_filtertwo' );
And I have implemented the custom taxonomy the EXACT same function on both blogs:
register_taxonomy( 'placecategory',
array( 'place' ),
array ( "hierarchical" => false,
"label" => 'Place category',
'labels' => array( 'name' => 'Place categories',
'singular_name' => 'Place Category',
'search_items' => 'Search Place Categories',
'all_items' => 'All Place Categories',
'parent_item' => 'Parent Place Category',
'parent_item_colon' => 'Parent Place Category:',
'edit_item' => 'Edit Place Category',
'update_item' => 'Update Place Category',
'add_new_item' => 'Add New Place Category',
'new_item_name' => 'New Place Category', ),
'public' => true,
'show_ui' => true,
"rewrite" => true,
'query_var' => true,
'_builtin' => true,
'can_export' => true )
);
I’ve put 5+ hours into trying to debug this. I can’t. Would you mind helping Ron? I realize you’re busy, but when you get a chance, I’d greatly appreciate it. Thanks.