WordPress 如何在第一张图像之后将数据附加到 post_content 中?

发布于 2025-01-13 03:01:19 字数 700 浏览 0 评论 0原文

输入图片此处描述

我想在从 post_content 检索到的第一张图像之后附加一些数据。

add_action('the_post', function($post, $query){
$post->post_content = catch_that_image();
},10,2);

function catch_that_image() {
  global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];

$chtml = "YOUR DATA GOES HERE";
return "<img src='".$first_img."'>" . "  " . $chtml;
}

我正在尝试使用代码来做到这一点。使用此功能,我无法在 post_content 中的第一张图像之后附加内容。

enter image description here

I want to append some data after first image retrieved from post_content.

add_action('the_post', function($post, $query){
$post->post_content = catch_that_image();
},10,2);

function catch_that_image() {
  global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];

$chtml = "YOUR DATA GOES HERE";
return "<img src='".$first_img."'>" . "  " . $chtml;
}

I am trying to do this by using code. Using this I am unable to append content after first image from post_content.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文