gpt4 book ai didi

php - 仅搜索和替换 wordpress 内容中的第一个 h2 标签

转载 作者:搜寻专家 更新时间:2023-10-31 21:01:19 25 4
gpt4 key购买 nike

function add_content_after_h2($content){
if (is_single()) {
$div = "This content is after first h2 tag";
$content = preg_replace('/(<\/h2>)/i', '\1'.$div, $content);
}

return $content;
}

add_filter('the_content', 'add_content_after_h2');

使用此代码,内容正在考虑所有 H2 标签,但我只需要考虑第一个 h2 标签。

最佳答案

您需要像下面这样更改 preg_replace():-

<?php
$div = "This content is after first </h2> tag";
echo $content = preg_replace('/(h2 | <h2> | <\/h2>)/','', $div, 1);

输出:- https://eval.in/715312

关于php - 仅搜索和替换 wordpress 内容中的第一个 h2 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41627355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com