我有更多的则在后期添加/编辑部分WP管理一个文本区域,我试图改变由WP默认textarea的内容,但是当我执行the_editor_content过滤器,它在默认情况下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);
}