Wordpress custom taxonomy term page not found

admin

Administrator
Staff member
For some reason when I click the link to a taxonomy term page, wordpress keeps displaying the index file and says page not found. I have a page with the slug "contributors" using a template that displays the terms of the custom taxonomy "contributor) with a link to it's page, so I click the link and the error occurs.

<hr>

This is my
Code:
functions.php
code for adding the taxonomy:

Code:
register_taxonomy(
    'contributor',
    'post',
    array(
        'hierarchical' =&gt; true,
        'labels' =&gt; array( 
             'name' =&gt; _x( 'Contributors', 'taxonomy general name' ), 
             'singular_name' =&gt; _x( 'Contributor', 'taxonomy singular name' ), 
             'search_items' =&gt; __( 'Search Contributors' ), 
             'all_items' =&gt; __( 'All Contributors' ), 
             'parent_item' =&gt; __( 'Parent Contributor' ), 
             'parent_item_colon' =&gt; __( 'Parent Contributor:' ), 
             'edit_item' =&gt; __( 'Edit Contributor' ), 
             'update_item' =&gt; __( 'Update Contributor' ), 
             'add_new_item' =&gt; __( 'Add New Contributor' ), 
             'new_item_name' =&gt; __( 'New Contributor Name' ), 
             'menu_name' =&gt; __( 'Contributors' ), 
         ),
        'show_tagcloud' =&gt; true
    )
);

Does anyone know why, even when including a file called
Code:
taxonomy-contributor.php
, the error still occurs?