echo "<li>"<a href="хрен его знает чего тут">. $term->name . "</a></li>";
<a href="хрен его знает чего тут">
<?php
$videolink = $modx->resource->getTVValue('12');
$itemArray = explode(' ', $videolink);
foreach ($itemArray as $item){
$ytarray=explode("/", $item);
$ytendstring=end($ytarray);
$ytendarray=explode("?v=", $ytendstring);
$ytendstring=end($ytendarray);
$ytendarray=explode("&", $ytendstring);
$ytendarray=explode(",", $ytendstring);
$ytcode=$ytendarray[0];
if (!empty($ytcode)) {
echo "
<h2>Видео</h2>
<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/$ytcode\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>
";
}