Wordpress add_meta_box not re-positioning

admin

Administrator
Staff member
I currently have a function in my wordpress-php file like this:

Code:
add_meta_box('wp_function', 'Event', 'wp_function', 'event', 'normal', 'default');

previously, it was this:

Code:
add_meta_box('wp_function', 'Event', 'wp_function', 'event', 'side', 'default');

However, when i changed the fifth parameter ($context) from 'side' to 'normal' it doesn't re-position to the main wrapper. Anyone knows why?