Joomla 3.4.3文章介绍图片没有显示

时间:2015-09-12 22:59:51

标签: php image joomla content-management-system

我正在使用Joomla 3.4.3,我有一篇文章,其中包含以下代码..

<p>kj<img src="images/demo_preview/about/about1.png" alt="image" width="150" height="150" /></p>
<hr id="system-readmore" />
<p> This is a sample blog posting.</p>

我已设置文章选项以显示前端图片,但我只是显示文字。

以下是我在文章编辑器中看到的内容......

Joomla Article Editor View

这就是我在网站上看到的......

enter image description here

如您所见,只显示文字

1 个答案:

答案 0 :(得分:0)

我找到了解决此问题的方法。似乎Joomla在文章介绍文本中删除了img标签。

我在帮助文件中找到了这个函数......

public static function _cleanIntrotext($introtext)
{
    $introtext = str_replace('<p>', ' ', $introtext);
    $introtext = str_replace('</p>', ' ', $introtext);
    $introtext = strip_tags($introtext, '<a><em><strong>');
    $introtext = trim($introtext);

    return $introtext;
}

通过注释掉strip_tags函数,我可以将img标记返回到我的文章中。对我来说这似乎是一种黑客方法,但它确实有效。