我在post add / edit部分的wp admin中有多个文本区域,我正在尝试更改wp的默认textarea的内容但是当我执行the_editor_content过滤器时,它会更改默认textarea的内容但是它还改变了其他textareas的内容,有没有办法只改变默认textarea的内容?
注意*其他textareas有不同的ID
我使用的代码:
add_filter( 'the_editor_content', 'my_editor_content' );
function my_editor_content() {
global $post;
return search_keywords($post->post_content, $keyword1,$keyword2,$keyword3);
}
答案 0 :(得分:1)
我认为你需要像这样挂钩default_content
add_filter( 'default_content', 'my_editor_content' );
function my_editor_content( $content ) {
$content = "This is my default content!";
return $content;
}