以下是我为其他面临同样问题的人提供的最终解决方案:
<?php
$values = get_field(\'services\');
if($values)
{
echo \'<ul>\';
foreach($values as $value)
{
echo \'<li>\' . \'<a href="glossary/#\' . strtolower(str_replace(\' \', \'_\', $value)) . \'"\' . \'>\' . $value . \'</a>\' . \'</li>\';
}
echo \'</ul>\';
}
?>