[Plugin: More Fields] More fields and WP2.7 metaboxes
-
I’ve just hacked this enough to get it working ok – though it’s not generally robust, it does for my blog with one box set up as a ‘right positioned’ box
find the lines starting: add_action(‘submitpost_box
and comment them out. then add
add_action('admin_menu','create_meta_box'); function create_meta_box() { if ( function_exists('add_meta_box') ) add_meta_box( 'new-meta-boxes', 'Custom Post Settings', 'mf_build_right_boxes', 'post', 'normal', 'high' ); }
hope this is of use to someone out there
- The topic ‘[Plugin: More Fields] More fields and WP2.7 metaboxes’ is closed to new replies.