From a617aeefb8359a5a12ca20ca3ef00681d1f814e1 Mon Sep 17 00:00:00 2001 From: Marcus Kazmierczak Date: Fri, 14 Dec 2018 01:18:51 -0800 Subject: [PATCH] Fix incorrect value for __back_compat_meta_box (#12776) --- .../developers/backward-compatibility/meta-box.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/designers-developers/developers/backward-compatibility/meta-box.md b/docs/designers-developers/developers/backward-compatibility/meta-box.md index 8e722b4cb3156..5403ebf674ac3 100644 --- a/docs/designers-developers/developers/backward-compatibility/meta-box.md +++ b/docs/designers-developers/developers/backward-compatibility/meta-box.md @@ -27,7 +27,7 @@ After a meta box is converted to a block, it can be declared as existing for bac add_meta_box( 'my-meta-box', 'My Meta Box', 'my_meta_box_callback', null, 'normal', 'high', array( - '__back_compat_meta_box' => false, + '__back_compat_meta_box' => true, ) ); ```