在标题框下移动精选图像元变量?

时间:2017-10-25 23:51:56

标签: wordpress custom-post-type

是否可以在自定义帖子类型的标题表单下移动精选图片元框?我还想看看是否有一种编程方式来“命令”元框?提前谢谢您的时间。

add_action( 'edit_form_after_title', 'add_content_before_editor' );   function add_content_before_editor() { 
add_meta_box('postimagediv', __('Custom Featured Image'), 'post_thumbnail_meta_box', 'post', 'normal', 'high'); 
  echo '<div class=\"postbox-container\">I'm above the content area!</div>'; 
  }

上面的代码正在处理文本“我在内容区域之上!”确实显示了我的预期。但add_meta_box没有。

2 个答案:

答案 0 :(得分:0)

是。您可能想要创建自定义页面模板。

答案 1 :(得分:0)

用它来移动特色图片:

add_action('do_meta_boxes', 'customposttype_image_box');

function customposttype_image_box() {

    remove_meta_box( 'postimagediv', 'customposttype', 'side' );

    add_meta_box('postimagediv', __('Custom Image'), 'post_thumbnail_meta_box', 'customposttype', 'normal', 'high');

}