0

对不起,如果我的术语令人困惑,但我不确定这到底是什么。

在 Wordpress 中编辑帖子或页面类型时,在编辑器的右侧有“发布”、“属性”、“特色图片”等部分。我想知道是否有一种方法可以将自己的部分添加到右侧像另一个?它是自定义帖子类型还是更复杂的东西?

我试图保持在使用钩子的可能性范围内。

4

2 回答 2

1

那些是“元盒”

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://wordpress.org/extend/plugins/meta-box/

http://wordpress.org/extend/plugins/types/

于 2012-12-06T16:08:27.843 回答
0

http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates

在这里阅读它^ 用谷歌搜索并不难!:)

于 2012-12-06T15:19:59.763 回答