WordPress 如何在第一张图像之后将数据附加到 post_content 中?
我想在从 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 中的第一张图像之后附加内容。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论