拆分正文内容并添加
>两个区域之间 | WordPress

发布于 2024-12-10 01:19:00 字数 437 浏览 0 评论 0原文

我的 WordPress 网站上有一个页面,我想用


不将其添加到 WordPress 管理端)来分解第二段后的正文)。

是否可以在第二个

之后裁剪我的内容,添加
,然后继续导出剩余文本?

因此生成的 HTML 可能是:

test1

test2


gt;

test3

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2024-12-17 01:19:00

我在这里收到了 str 对非常类似问题的回答:在第二个句号后裁剪字符串

我的最终代码如下所示:

                        <?php
                        $str = get_the_content();
                        $strArray = explode('</p>', $str);
                        $str1 = $strArray[0] . '</p> ';
                        $str2 = $strArray[1] . '</p>';
                        echo $str1;
                        echo '<hr />';
                        echo $str2;
                        ?>  

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:

                        <?php
                        $str = get_the_content();
                        $strArray = explode('</p>', $str);
                        $str1 = $strArray[0] . '</p> ';
                        $str2 = $strArray[1] . '</p>';
                        echo $str1;
                        echo '<hr />';
                        echo $str2;
                        ?>  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文