1

我在后添加/编辑部分的 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);
}
4

1 回答 1

2

我认为你需要default_content像这样

add_filter( 'default_content', 'my_editor_content' );

function my_editor_content( $content ) {

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

return $content;
}
于 2013-03-05T13:51:39.267 回答