我正在为朋友创建一个wordpress主题,并尝试在使用帖子上的媒体按钮插入的图像之前和之后添加一些标记。
这是我到目前为止所做的,但它给了我一个错误。任何建议或帮助将不胜感激!
add_filter ('the_content', 'wpse264886_content_insert_html', 10, 1);
function wpse264886_content_insert_html ($content) {
$html1 = 'before ... ';
$html2 = 'after ...';
$content = preg_replace('/(<a.*?)><(img.*?)/', '$1>' . $html1 . '<$2>' . $html2, $content);
return $content;
}
谢谢!
蓬