我在的帮助下创建了一个自定义元框this answer 但此元框仅出现在编辑后屏幕中。如何使其在“页面”以及由当前主题创建的自定义帖子类型上可见。
Update:代码来自function.php
添加自定义元框:
/* Define the custom box */
add_action( \'add_meta_boxes\', \'wpse_61041_add_custom_box\' );
/* Do something with the data entered */
add_action( \'save_post\', \'wpse_61041_save_postdata\' );
/* Adds a box to the main column on the Post and Page edit screens */
function wpse_61041_add_custom_box() {
add_meta_box(
\'wpse_61041_sectionid\',
\'Does this page is in Englsih?\',
\'wpse_61041_inner_custom_box\',
\'post\',
\'side\',
\'high\'
);
}
我不知道如何添加page
&;custom-post-types
要做到这一点meta-box
在那里可见。