我遇到了 Joomla 的问题。我创建了一个MenuItemType
类别Blog
,它完美地列出了单个类别的所有文章。然而,当我为该类别创建文章时,我遇到了问题。 Joomla会自动将所有图像转换为readmore
个链接。例如
<p>
<img alt="" src="image.JPG" style="width: 180px; height: 79px;" />
</p>
将变成
<a href="/index.php/en/news/24-zweite-news" title="Read more: Zweite News">
<img src="image.JPG" width="180" height="79" class="multithumb_blog" style="border: ;" alt="Read more: Zweite News">
</a>
我找不到任何配置参数来更改此行为。