I'm trying a twist on a simple if / else statement.
If the blog_category field is populated (page select), display the categories. If not, don't output anything.
This works:
<?php
if ($page->blog_category){
foreach($page->blog_category as $cat){
echo"<a href=\"{$cat->url}\">{$cat->title...