向多篇文章添加元数据库
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
'id' => 'my-meta-box-1', 'title' => 'Custom meta box 1', 'context' => 'normal', 'priority' => 'high', 'name' => 'Text box', 'desc' => 'Enter something here', 'id' => $prefix . 'text', 'type' => 'text', 'std' => 'Default value 1' ) ) ); / Add meta box function mytheme_add_box() { global $meta_box; foreach ($meta_box['pages'] as $page) { add_meta_box($meta_box['id'], $meta_box['title'], 'mytheme_show_box', $page, $meta_box['context'], $meta_box['priority']); } }
以上是关于向多篇文章添加元数据库的主要内容,如果未能解决你的问题,请参考以下文章