我想在wordpress网站的前端为每种多媒体类型添加描述。我可以轻松地在Wordpress上的类别中添加描述,但是它警告我“该描述默认情况下并不突出;但是,某些主题可能会显示它,
{% for multimedia_taxonomy in multimedia_posts %}
<div class="container">
<div class="row">
<div class="col-6">
<h2>{{multimedia_taxonomy.name}}</h2>
<p>{{multimedia_taxonomy.description}}</p>
</div>
<div class="col-6 text-right valign-content">
<a href="/multimediatype/{{multimedia_taxonomy.slug}}">see more</a>
</div>
</div>
<div class="row">
{% for item in multimedia_taxonomy.posts %}
<div class="col-md-4">
{% include 'component/tease-multimedia.twig' %}
</div>
{% endfor %}
</div>
</div>
{% endfor %}
似乎我正在使用的主题不支持此功能,因为什么也没有显示。如何解决此问题并以某种方式显示说明?