Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WordPress – Taxonomy -> Ob errors Re: WordPress – Taxonomy -> Ob errors

#66564

Your syntax for register taxonomy is wrong. It should be :

Code:
register_taxonomy( ‘Year’, ‘page’, array(
‘hierarchical’ => false,
‘label’ => ‘Year’,
‘query_var’ => ‘car-year’,
‘rewrite’ => array(‘slug’ => ‘car-year’)
));

I used ‘car-year’ because year might get confused with the post’s publish date year.