网站地图    收藏   

主页 > 后端 > wordpress教程 >

wordpress新增post_type和post_meta - WordPress

来源:自学PHP网    时间:2014-11-28 23:42 作者: 阅读:

[导读] 自定义文章类型,增加post_type:1:调用add_action( 39;init 39;, 39;自定义方法名 39;)就是在系统调用do_action( 39;init 39;)的时候...

wordpress新增post_type和post_meta

自定义文章类型,增加post_type:

1:调用add_action('init','自定义方法名')就是在系统调用do_action('init')的时候执行自定义方法

2:编写自定义方法:

  1. function my_custom_init()      
  2. {     
  3.   $labels = array(      //用来配置文章类型显示在后台界面的一些描述性文字。默认为空 
  4.     'name' => '书本name',     
  5.     'singular_name' => '书本singularname',     
  6.     'add_new' => 'Add_new',     
  7.     'add_new_item' => 'add_new_item',     
  8.     'edit_item' => 'edit_item',     
  9.     'new_item' => 'new_item',     
  10.     'view_item' => 'view_item',     
  11.     'search_items' => 'search_items',     
  12.     'not_found' =>  'not_found',     
  13.     'not_found_in_trash' => 'not_found_in_trash',      
  14.     'parent_item_colon' => '',     
  15.     'menu_name' => 'menu_name'     
  16.     
  17.   );     
  18.   $args = array(     
  19.     'labels' => $labels,     
  20.     'public' => true,    //用于定义publicly_queriable, show_ui, show_in_nav_menus and exclude_from_search的值 
  21.     'publicly_queryable' => true, //可以从前台获取的变量(    
  22.     'show_ui' => true,    //是否生成一个默认的管理页面,也就是是否在后台有管理页面  
  23.     'show_in_menu' => true,  //是否在后台菜单项中显示,如果为ture,那么show_ui的值也必须设置为true,将会有一个顶级菜单项。还可以为一个字符串    
  24.     'query_var' => true,    //url重写会用到 
  25.     'rewrite' => true,    //是否有url重写,设置为false的话将会防止url重写 
  26.     'capability_type' => 'post',//查看、编辑、删除的能力类型     
  27.     'has_archive' => true,     //文章是否有归档,就是一个所有文章归档页面。 
  28.     'hierarchical' => false,    //文章是否有层级关系,也就是是否允许有父级文章 
  29.     'menu_position' => null,   //后台菜单中的位置  
  30.     'supports' => array('title','editor','author','thumbnail','excerpt','comments')     
  31.   ); //对文章类型的一些功能支持  及时post表的一些属性 
  32.  
  33.   register_post_type('需要定义的post_type',$args);   /   
  34. }     
  35. 当然在实际工作中用不到这么的属性: 
  36. //eg 
  37. add_action('init''ts_post_type_slider'); 
  38. function ts_post_type_slider() { 
  39. register_post_type( 'slider'
  40.                 array(  
  41. 'label' => __('Slider'),  
  42. 'public' => true,  
  43. 'show_ui' => true, 
  44. 'show_in_nav_menus' => false, 
  45. 'menu_position' => 5, 
  46. 'supports' => array
  47.                    'title'
  48. 'excerpt'
  49.                             'thumbnail'
  50. )  
  51. ); 

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方法中的回调函数:

  1. function slider_show_box() { 
  2. global $meta_boxes$post//感觉你点击新建post的时候,wordpress已经在数据库插入一条数据了,这个post的ID就也可以使用了 
  3. // Use nonce for verification 
  4. echo ''
  5. echo mytheme_create_metabox($meta_boxes[0]); 

4:保存增加的post_meta了

  1. add_action('save_post''mytheme_save_data'); 
  2. function mytheme_save_data($post_id) { 
  3. global $meta_boxes
  4. //验证 安全问题 
  5. if(isset($_POST['mytheme_meta_box_nonce'])){ 
  6. if (!wp_verify_nonce($_POST['mytheme_meta_box_nonce'], basename(__FILE__))) { 
  7. return $post_id
  8.  
  9. //是否是自动保存 
  10. if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { 
  11. return $post_id
  12.  
  13. // 权限检查 
  14. if ('page' == isset($_POST['post_type'])) { 
  15. if (!current_user_can('edit_page'$post_id)) { 
  16. return $post_id
  17. elseif (!current_user_can('edit_post'$post_id)) { 
  18. return $post_id
  19.   //保存,或者更新post_meta 
  20. foreach($meta_boxes as $meta_box){ 
  21. foreach ($meta_box['fields'as $field) { 
  22. $old = get_post_meta($post_id$field['id'], true); 
  23. $new = (isset($_POST[$field['id']]))? $_POST[$field['id']] : ""
  24.  
  25. if ($new && $new != $old) { 
  26. update_post_meta($post_id$field['id'], $new); 
  27. elseif ('' == $new && $old) { 
  28. delete_post_meta($post_id$field['id'], $old); 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论