来自 WordPress 帖子的标签 导出
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将我所有的帖子导出到 WordPress 中,以便将它们集成到 HubSpot COS 中。
虽然我在帖子格式方面有一些问题。
有几个<p>标签,我想去掉。
<p>
这是一篇文章的 DOM 屏幕截图。
没有任何内容的<p>标签需要被剥离。
我在 HubSpot 中遇到的问题是,HubSpot 创建条目摘录作为帖子的第一段。由于我的第一段是空白的,因此 HubSPot 中没有摘录。
关于解决这个问题的想法?
你可以使用正则表达式
$content=preg_replace("/<p[^>]*>\s*<\/p>/isU","", $content);
Hubspot 不使用第一段作为摘录
您可以选择是否希望您的摘录结束,方法是转到博客编辑器,将光标移动到您希望摘录结束的行,然后单击
插入 > 阅读更多
完毕