我尝试使用这段代码在帖子内容中的每个表标签周围包裹一个 div 标签,但我不知道为什么它不起作用:
function tekst_wrapper($content) {
return preg_replace_callback('~<table.*</table>~i', function($match) {
return '<div>' . $match[0] . '</div>';
}, $content);
}
add_filter('the_content', 'tekst_wrapper');
Run Code Online (Sandbox Code Playgroud) wordpress ×1