1

追加/編集後のセクションのwpadminに複数のテキスト領域があります。wpのデフォルトのtextareaのコンテンツを変更しようとしていますが、the_editor_contentフィルターを実行すると、デフォルトの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 に答える