向多篇文章添加元数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向多篇文章添加元数据库相关的知识,希望对你有一定的参考价值。

This function will loop all the registered post types, and for each post type create a meta box with given data. Here links is assimilated to post types
  1. $meta_box = array(
  2. 'id' => 'my-meta-box-1',
  3. 'title' => 'Custom meta box 1',
  4. 'pages' => array('post', 'page', 'link'), // multiple post types, accept custom post types
  5. 'context' => 'normal',
  6. 'priority' => 'high',
  7. 'fields' => array(
  8. 'name' => 'Text box',
  9. 'desc' => 'Enter something here',
  10. 'id' => $prefix . 'text',
  11. 'type' => 'text',
  12. 'std' => 'Default value 1'
  13. )
  14. )
  15. );
  16.  
  17. / Add meta box
  18. function mytheme_add_box() {
  19. global $meta_box;
  20.  
  21. foreach ($meta_box['pages'] as $page) {
  22. add_meta_box($meta_box['id'], $meta_box['title'], 'mytheme_show_box', $page, $meta_box['context'], $meta_box['priority']);
  23. }
  24. }

以上是关于向多篇文章添加元数据库的主要内容,如果未能解决你的问题,请参考以下文章

Django:管理员,向多项选择字段添加一些新过滤器

如何在 python 2 中向多部分电子邮件添加正文?

如何在 Django 中向多对多关系中添加字段?

php 向多站点主体添加额外的类

使用 jQuery 的 select2 向多选添加值

Ajax 片段元标记 - Googlebot 未读取页面内容