the_editor_content过滤器在添加/编辑帖子部分中更改wp admin中其他textarea的内容?

时间:2013-03-05 12:26:36

标签: wordpress filter richtextarea

我在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);
}

1 个答案:

答案 0 :(得分:1)

我认为你需要像这样挂钩default_content

add_filter( 'default_content', 'my_editor_content' );

function my_editor_content( $content ) {

$content = "This is my default content!";

return $content;
}