How to access global $wp_meta_boxes variable on front-end?
I’m afraid you can’t do what you are after – without AJAX, that is. The problem lies with the fact that all/most of the meta boxes are added in an admin-specific context. The add_meta_boxes action hook, for instance, is the most common (and appropriate) place to add custom meta boxes. And this very hook is … Read more