Custom Taxonomy – Page not found help!
-
I have a custom taxonomy that isn’t showing up on what I think to be the correct template. Here’s the function:
add_action( 'init', 'blogtags' ); function blogtags() { $args1 = array( 'hierarchical' => false, 'label' => 'Blog Tags', 'show_admin_column' => true, 'rewrite' => array( 'slug' => 'blogtags' ), 'add_new_item' => 'Add New Tag', ); register_taxonomy( 'blogtags', array( 'azblog' ), $args1 ); }
Now shouldn’t the template page be
taxonomy-blogtags.php
? I have another custom taxonomy using the exact same function only instead of the name blogtags, it’s blogsubjects. That one DOES work withtaxonomy-blogsubjects.php
.I’m confused!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom Taxonomy – Page not found help!’ is closed to new replies.