I’m using this code.
add_filter('meta-box-order_post','one_column_for_all');
function one_column_for_all($result, $option, $user){
$result['normal'] = 'postexcerpt,formatdiv,trackbacksdiv,tagsdiv-post_tag,categorydiv,postimagediv,postcustom,commentstatusdiv,slugdiv,authordiv,submitdiv';
$result['side'] = '';
$result['advanced'] = '';
return $result;
}
My submitdiv
always appearing in the middle instead of bottom. Can anyone help me to move it to the bottom?
Please note: I also have some custom metaboxes which is added by some plugins.
So i want to move the submitdiv
very bottom of the page
Try something like this:
And since you’re forcing content into one column, you might want to add these for design consistency:
I’m assuming you’re talking about normal posts, which is what I’ve shown above, but these could be adapted to other post types as well, I guess, using different filters.