繁体   English   中英

Joomla 3.4.3文章介绍图片未显示

[英]Joomla 3.4.3 article intro images not showing

我正在使用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文章编辑器视图

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

在此处输入图片说明

如您所见,仅显示文本

我已经找到解决此问题的方法。 看来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标签恢复到我的文章中。 在我看来,这似乎是一种破解方法,但它确实有效。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM