In the codex it lists the parameter $context for the add_meta_box as having the following options:
- normal
- advanced
- side
What does “advanced” do? I don’t see any difference between it and “normal”.
In the codex it lists the parameter $context for the add_meta_box as having the following options:
What does “advanced” do? I don’t see any difference between it and “normal”.
You must be logged in to post a comment.
The difference between normal and advanced is that normal will be placed on the page before advanced.
For example the following will display “One” before “Two”
If you switch the context parameter around, then “Two” will display before “One” on the edit page:
Also if you reorder the meta boxes yourself by dragging them around then that order is saved and seems to take precedence over the ‘normal’ and ‘advanced’ contexts.