Skip to content

Commit

Permalink
Fix incorrect value for __back_compat_meta_box (#12776)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaz authored and gziolo committed Dec 14, 2018
1 parent 1ac6ee7 commit a617aee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
);
```
Expand Down

0 comments on commit a617aee

Please sign in to comment.