My custom taxonomy page is leading in 404 page

Question
function wporg_register_taxonomy_instructor()
{
    $labels = [
        'name'              => _x('Instructors', 'taxonomy general name'),
'singular_name'     => _x('Instructor', 'taxonomy singular name'),
'search_items'      => __('Search Instructors'),
'all_items'         => __('All Instructors'),
'parent_item'       => __('Parent Instructor'),
'parent_item_colon' => __('Parent Instructor:'),
'edit_item'         => __('Edit Instructor'),
'update_item'       => __('Update Instructor'),
'add_new_item'      => __('Add New Instructor'),
'new_item_name'     => __('New Instructor Name'),
'menu_name'         => __('Instructor'),
];
$args = [
'hierarchical'      => true, // make it hierarchical (like categories)
'labels'            => $labels,
'show_ui'           => true,
'show_admin_column' => true,
'query_var'         => true,
'rewrite'           => ['slug' => 'instructor'],
];
register_taxonomy('instructor', ['post'], $args);
}
add_action('init', 'wporg_register_taxonomy_instructor');

I use this code to register a custom taxonomy with name instructor but when I click at the link that is produced by get_term_link($term->term_id) I am leading to 404 page.

0
, Chris 3 years 2020-04-05T16:50:56-05:00 0 Answers 84 views 0

Leave an answer

Browse
Browse