3
使用我的Joomla插件,我想在創建輸出之前獲取並修改所有內容。Joomla插件在輸出前獲取整個頁面的內容
function newContent($html)
{
$html = "new content";
return $html;
}
function onContentPrepare()
{
ob_start(array($this, "newContent"));
return true;
}
function onContentBeforeDisplay()
{
ob_end_flush();
return true;
}
我試着用onContentAfterDisplay
但它仍然只改變一小部分,而不是所有的輸出。
嗨,我想獲得和修改所有內容(頭,體,尾),所有的頁面,不僅文章 –
@Vasile亞歷喜獸疫,我我更新了我的答案。 – arbogastes
嗨,它的工作原理,謝謝。 –