拆分正文内容并添加
>两个区域之间 | WordPress
我的 WordPress 网站上有一个页面,我想用
(不将其添加到 WordPress 管理端)来分解第二段后的正文)。
是否可以在第二个 之后裁剪我的内容,添加
,然后继续导出剩余文本?
因此生成的 HTML 可能是:
test1 test2 test3
gt;
test4
我不知道从哪里开始:(
有人能指出我正确的方向吗?
我想使用the_content_rss
可以解决这个问题,但是没有真正的文档说明我如何实现上述目标。
非常感谢您的指点。
I have a page on my WordPress site and I'd like to break up the body text after the 2nd paragraph with an <hr />
(without adding it in the WordPress admin side).
Is it possible to crop my content after the 2nd </p>
, add the <hr />
and then continue to export the remaining text?
So the resulting HTML could be:
<p>test1</p><p>test2</p><hr /><p>test3</p><p>test4</p>
I'm not sure where to start with this :(
Could someone point me in the right direction?
I thought using the_content_rss
would do the trick, but there's no real documentation on how I can achieve the above.
Many thanks for any pointers at all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在这里收到了 str 对非常类似问题的回答:在第二个句号后裁剪字符串。
我的最终代码如下所示:
I have received an answer for a very similar question by str here: Crop string after 2nd full stop.
My eventual code looks like this: