这是一个很老的问题,但我在寻找自己的一些答案时遇到了它,我想我应该再添加一个答案。
WordPress有一个名为the_content()
它允许您过滤返回到几乎任何函数的内容,包括编辑器。
请在此处查看文档:https://developer.wordpress.org/reference/hooks/the_content/
文档中的代码示例,用于确定我们是否在管理员中:
add_filter( \'the_content\', \'filter_the_content_in_the_main_loop\', 1 );
function filter_the_content_in_the_main_loop( $content ) {
// Check if we\'re in the wp-admin
if ( is_admin ) {
return $content . esc_html__( \'I’m filtering the content in the admin\', \'wporg\');
}
return $content;
}