对不起,如果我的术语令人困惑,但我不确定这到底是什么。
在 Wordpress 中编辑帖子或页面类型时,在编辑器的右侧有“发布”、“属性”、“特色图片”等部分。我想知道是否有一种方法可以将自己的部分添加到右侧像另一个?它是自定义帖子类型还是更复杂的东西?
我试图保持在使用钩子的可能性范围内。
那些是“元盒”
http://codex.wordpress.org/Function_Reference/add_meta_box
function my_custom_meta_boxes()
{
add_meta_box(
'custom1', // id
'Custom Metabox', // title
'display_custom_meta_box', // callback for display
'post', // post type
'normal', // position
'high' // priority
);
}
add_action('add_meta_boxes', 'my_custom_meta_boxes');
function display_custom_meta_box()
{
echo 'Your meta box here';
}
有一些插件可用于快速创建元框,例如
http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
在这里阅读它^ 用谷歌搜索并不难!:)