wordpress新增post_type和post_meta
自定义文章类型,增加post_type:
1:调用add_action('init','自定义方法名')就是在系统调用do_action('init')的时候执行自定义方法
2:编写自定义方法:
- function my_custom_init()
- {
- $labels = array(
- 'name' => '书本name',
- 'singular_name' => '书本singularname',
- 'add_new' => 'Add_new',
- 'add_new_item' => 'add_new_item',
- 'edit_item' => 'edit_item',
- 'new_item' => 'new_item',
- 'view_item' => 'view_item',
- 'search_items' => 'search_items',
- 'not_found' => 'not_found',
- 'not_found_in_trash' => 'not_found_in_trash',
- 'parent_item_colon' => '',
- 'menu_name' => 'menu_name'
-
- );
- $args = array(
- 'labels' => $labels,
- 'public' => true,
- 'publicly_queryable' => true,
- 'show_ui' => true,
- 'show_in_menu' => true,
- 'query_var' => true,
- 'rewrite' => true,
- 'capability_type' => 'post',
- 'has_archive' => true,
- 'hierarchical' => false,
- 'menu_position' => null,
- 'supports' => array('title','editor','author','thumbnail','excerpt','comments')
- );
-
- register_post_type('需要定义的post_type',$args); /
- }
- 当然在实际工作中用不到这么的属性:
-
- add_action('init', 'ts_post_type_slider');
- function ts_post_type_slider() {
- register_post_type( 'slider',
- array(
- 'label' => __('Slider'),
- 'public' => true,
- 'show_ui' => true,
- 'show_in_nav_menus' => false,
- 'menu_position' => 5,
- 'supports' => array(
- 'title',
- 'excerpt',
- 'thumbnail')
- )
- );
- }
3:到了这里差不多可以为文章增加新的post_type了,但是增加的post_type的supports可能不能满足你的需求,这个需要增加post_meta,就是所谓的自定义字段:
1:首先还是调用add_action('admin_menu', 'mytheme_add_box');看到这里发现给wordpress增加新东西都是调用add_action()的方法,第一个参数需要到wordpress官方网站查找。
2:编写mytheme_add_box方法.在mytheme_add_box方法中调用
add_meta_box($meta_box['id'], $meta_box['title'], $meta_box['showbox'], $meta_box['page'], $meta_box['context'], $meta_box['priority']);
$id HTML 代码中设置区域中id属性的值
$title 区域中的标题名称
$callback 添加的设置区域的显示函数(回调函数) 在回调函数中可以访问$post
$post_type 在 post 还是 page 的编辑页面中显示 ,也可以添加自定义的post_type
$context 设置区域的显示位置,主编辑区、边栏、其他('normal','advanced',或者 'side')
$priority 设置区域显示的优先级
$callback_args 回调函数接受的附加参数...
3:编写add_meta_box方法中的回调函数:
- function slider_show_box() {
- global $meta_boxes, $post;
-
- echo '';
- echo mytheme_create_metabox($meta_boxes[0]);
- }
4:保存增加的post_meta了
- add_action('save_post', 'mytheme_save_data');
- function mytheme_save_data($post_id) {
- global $meta_boxes;
-
- if(isset($_POST['mytheme_meta_box_nonce'])){
- if (!wp_verify_nonce($_POST['mytheme_meta_box_nonce'], basename(__FILE__))) {
- return $post_id;
- }
- }
-
-
- if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
- return $post_id;
- }
-
-
- if ('page' == isset($_POST['post_type'])) {
- if (!current_user_can('edit_page', $post_id)) {
- return $post_id;
- }
- } elseif (!current_user_can('edit_post', $post_id)) {
- return $post_id;
- }
-
- foreach($meta_boxes as $meta_box){
- foreach ($meta_box['fields'] as $field) {
- $old = get_post_meta($post_id, $field['id'], true);
- $new = (isset($_POST[$field['id']]))? $_POST[$field['id']] : "";
-
- if ($new && $new != $old) {
- update_post_meta($post_id, $field['id'], $new);
- } elseif ('' == $new && $old) {
- delete_post_meta($post_id, $field['id'], $old);
- }
- }
- }
- }