是的,这是可能的。
您可以使用the_content
钩子并将您自己的过滤器分配给此钩子。
然后你应该(当事情变得有点混乱时)解析并替换那篇文章的内容。
例如,您可以这样做:
function my_the_content_filter($content) {
$content = str_replace(\'<h2 \', \'<img src=""...><h2 \', $content);
return $content;
}
add_filter( \'the_content\', \'my_the_content_filter\' );