Home › Forums › Theme support › Single Portfolio › Reply To: Single Portfolio
Please take a look at this line:
register_taxonomy("project-type", array("portfolio"), array("hierarchical" => true, "label" => "Tour Type", "singular_label" => "Tour Type", "rewrite" => array( "slug" => "tour-type"));
There is missing a closing ” ) ” sign, please replace it with this code:
register_taxonomy("project-type", array("portfolio"), array("hierarchical" => true, "label" => "Tour Type", "singular_label" => "Tour Type", "rewrite" => array( "slug" => "tour-type") ) );