除非您有特定的理由使用meta-box-order值,否则这就太过分了。
取而代之的是放弃页面摘录,添加一个名为“intro\\u content”(或其他任何内容)的元框。
然后在家里。php查询您可以轻松获取此信息,并使用html按您想要的方式进行排序。
例如:
// replace 1, 2, 3, with actual page ID\'s
$about_meta = get_post_meta( 1, \'intro_content\');
$new_patients_meta = get_post_meta( 2, \'intro_content\');
$service_meta = get_post_meta( 3, \'intro_content\');
// div styles and echo the title + the above or whatever
http://codex.wordpress.org/Function_Reference/get_post_meta Added this after your comment/edit.
要对元盒进行排序,可以添加另一个具有数值的元盒,或者更好地添加下拉框(例如称为“order\\u value\\u dropdown”)。
这样,您可以在查询中按下拉列表的值查询订单。例如:
$order_meta = get_post_meta( 3, \'order_value_dropdown\');
if ($order_meta = 1 )
//grab the intro_content meta from that post
if ($order_meta = 2 )
//grab the intro_content meta from that post
// etc, etc