WordPress 修改 the_content 标记
使用 jQuery 或 PHP,我想修改 WordPress 中 the_content 函数的 dom 结构。在一些帖子中,我使用 h3 元素,并且我想添加一个包含直到下一个 h3 的内容的包装器。
所以我想将其转换
<h3>Title</h3>
<p>This is just regular text</p>
<h3>Next title</h3>
为:
<div class='wrapper'>
<h3>Title</h3>
<p>This is just regular text</p>
</div>
<div class='wrapper'>
<h3>Next title</h3>
</div>
谢谢!
With jQuery or PHP, I would like to modify the dom structure of the the_content function in WordPress. In some posts I use the h3 element, and I would like to add a wrapper that contains the content until the next h3.
So I would like to convert this:
<h3>Title</h3>
<p>This is just regular text</p>
<h3>Next title</h3>
Into this:
<div class='wrapper'>
<h3>Title</h3>
<p>This is just regular text</p>
</div>
<div class='wrapper'>
<h3>Next title</h3>
</div>
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设内容仅由
和
组成,并且它们的格式良好,如下所示:
那么您可以在 jQuery 中尝试此操作。
assuming that the content only consists of <h3>s and <p>s,and they are welled formated like:
then you may try this in jQuery.