i have create a page template and Post Type games with taxonomies "gamecategory" but whenever i'm trying to get the categories from gamecategory it is showing that it is an invalid taxonomy.
Here's the code
$categories = get_terms("taxonomy=gamecategory");
foreach ($categories as $category) :
echo '<button class="button" data-filter=".' . $category->slug . '">' . $category->name . '</button>';
endforeach