我在后添加/编辑部分的 wp admin 中有多个文本区域,我正在尝试更改 wp 的默认 textarea 的内容,但是当我执行 the_editor_content 过滤器时,它会更改默认 textarea 的内容,但它也会更改其他textarea的内容,有没有办法改变默认textarea的内容?
注意* 其他文本区域有不同的 id
我使用的代码:
add_filter( 'the_editor_content', 'my_editor_content' );
function my_editor_content() {
global $post;
return search_keywords($post->post_content, $keyword1,$keyword2,$keyword3);
}