我在wordpress管理部分添加了metabox。 我的代码:
add_meta_box('cabcd', __( 'Page Settings', 'bg_textdomain' ), 'myplugin_meta_box_callback', 'page', 'side' );
现在我希望它在标题部分后显示。 我怎么能这样做?
答案 0 :(得分:2)
您必须设置add_meta_box()
的$priority
add_meta_box(
'cabcd',
__( 'Page Settings',
'bg_textdomain' ),
'myplugin_meta_box_callback',
'page',
'side',
'high' // priority
);
答案 1 :(得分:1)
此代码用于添加元框
<?php
add_meta_box( $id, $title, $callback, $post_type, $context,
$priority, $callback_args );
?>
<强> $优先强>
(string)(可选)框中上下文中的优先级 应该显示('高','核心','默认'或'低')默认值:'默认'
您可以尝试 (set the priority to high)
add_meta_box('cabcd', __( 'Page Settings', 'bg_textdomain' ), 'myplugin_meta_box_callback', 'page', 'side','high' );
更多信息click
答案 2 :(得分:0)
<?php
function custom_meta_box_markup()
{
}
function add_custom_meta_box()
{
add_meta_box("demo-meta-box", "Custom Meta Box", "custom_meta_box_markup", "post", "after_title", "high", null);
}
add_action("add_meta_boxes", "add_custom_meta_box");
function edit_form_after_title() {
// get globals vars
global $post, $wp_meta_boxes;
do_meta_boxes( get_current_screen(), 'after_title', $post );
// unset 'ai_after_title' context from the post's meta boxes
unset( $wp_meta_boxes['post']['after_title'] );
}
add_action( 'edit_form_after_title', 'edit_form_after_title' );
?>