I have a custom taxonomy (Talks)
I create for custom taxonomy taxonomy-talks.php its working on my localhost. When I upload FTP still call archive.php or taxonomy.php. It must call taxonomy-talks.phpbut not working.
How can I fix it?
My Taxonomy Code:
register_taxonomy('Talks',array (
0 => 'videolar',
),array( 'hierarchical' => true,
'label' => 'talks',
'show_ui' => true,
'query_var' => true,
'rewrite' => array('slug' => 'talks')) );
