如何设置wordpress元盒位置


How to set wordpress metabox position

所以我有一个自定义的metabox,我需要它在帖子标题后面,有办法设置位置顺序吗?

//LE不起作用:

//create a variable and store the widget
$widget1 = $wp_meta_boxes['dashboard']['normal']['core']['information'];
// unset both widgets
unset($wp_meta_boxes['dashboard']['normal']['core']['information']);
//re insert widget in the order you want
$wp_meta_boxes['dashboard']['normal']['core']['information'] = $widget1;

这是一个关于将仪表板小部件推到顶部的链接。该理论可用于排列帖子/页面元框。

//create a variable and store the widget
$widget1 = $wp_meta_boxes['dashboard']['normal']['core']['your widget id'];
$widget2 = $wp_meta_boxes['dashboard']['normal']['core']['other widget id'];
// unset both widgets
unset($wp_meta_boxes['dashboard']['normal']['core']['your widget id']);
unset($wp_meta_boxes['dashboard']['normal']['core']['other widget id']);
//re insert widget in the order you want
$wp_meta_boxes['dashboard']['normal']['core']['other widget id'] = $widget2;
$wp_meta_boxes['dashboard']['normal']['core']['your widget id'] = $widget1;

您还可以使用jQuery在框显示后移动框

$('#pageparentdiv').prependTo('#normal-sortables');
$('#panel_38').insertAfter('#pageparentdiv');