Hi deadhippo,
i dunno if you are still looking for the mistake but i found it.
You wrote the $MetaValue
first in Uppercase, and then with a small M.
<?php
if (function_exists('wp_get_terms_meta'))
{
$MetaValue = wp_get_terms_meta(1, artiststore ,true);
}
//meta value for meta key $meta_key
echo $metaValue;
?>
It should look like this.
<?php
if (function_exists('wp_get_terms_meta'))
{
$MetaValue = wp_get_terms_meta(1, artiststore ,true);
}
//meta value for meta key $meta_key
echo $MetaValue;
?>