the_editor_content过滤更改其他的textarea的WP管理员在添加/编辑部分的内容

2019-10-17 19:02发布

我有更多的则在后期添加/编辑部分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);
}

Answer 1:

我想你需要挂接到default_content这样

add_filter( 'default_content', 'my_editor_content' );

function my_editor_content( $content ) {

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

return $content;
}


文章来源: the_editor_content filter change the content of other textarea in wp admin in add/edit post section?