首页 > 解决方案 > Oxwall - 删除元标记

问题描述

如何删除 Oxwall 软件或任何软件中的元标记。Oxwall 核心加载自动错误的 Facebook 元标记。

错误值(由 Oxwall 生成):

<meta name="og:type" content="website" />

正确值:

<meta property="og:type" content="website" />

提前致谢

标签: htmlmetaoxwall

解决方案


您可以在基本或插件 init.php 文件中包含以下行。如果您不使用插件,请打开 /ow_system_plugins/base/init.php 并添加以下代码:

function modify_custom_meta_property(){
    OW::getDocument()->addMetaInfo('og:type', 'website', 'property');
}
OW::getEventManager()->bind(OW_EventManager::ON_BEFORE_DOCUMENT_RENDER, 'modify_custom_meta_property');

推荐阅读