I currently have a function in my wordpress-php file like this:
previously, it was this:
However, when i changed the fifth parameter ($context) from 'side' to 'normal' it doesn't re-position to the main wrapper. Anyone knows why?
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?