尝试在保存之前使用插件对文章进行相同的更改。 的Joomla!继续将readmore div添加到文本中。
class PlgContentEditArti extends JPlugin
{
function onContentBeforeSave($context, $article, $isNew)
{
if($context == "com_content.article")
{
$article->fulltext = "hi";
}
return true;
}
}
输出
<hr id="system-readmore" />
<p>hi</p>