我想在原生媒体播放器之后插入类别说明。
对于类别说明,我使用此代码:
$categories = get_the_category();
foreach($categories as $key => $category) {
$url = get_term_link((int)$category->term_id,'category');
$categories[$key] =
"<dd>{$category->category_description}</dd>";
}
echo "<dl>\n" . implode("\n",$categories) . "\n</dl>";
但在我编辑media.php(视频短代码)后,将显示媒体播放器的类别说明。
有人可以给我任何建议吗?