I was able to get this working just fine with this code with advanced custom fields:
<?php $value = get_field('extended_store_descriptions', stores_47);
echo $value;
?>
Now how can I make that number 47 dynamic and automatically generate based on the category id.
I tried doing this
<?php $storenum = get_the_category(); ?>
<?php $value = get_field('extended_store_descriptions', stores_$storenum);
echo $value;
?>
To no avail, I'm sure this is any easy fix if someone can jump in. Thanks a lot!
"stores_$storenum"would be a start. ;) – toscho♦ Feb 6 at 7:21