自定义WordPress编辑器

时间:2012-12-06 15:14:16

标签: php wordpress

很抱歉,如果我的术语令人困惑,但我不确定这究竟是什么。

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

我试图保持使用钩子的可能性。

2 个答案:

答案 0 :(得分: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/

答案 1 :(得分:0)

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

在这里阅读^ 谷歌并不难! :)