Đăng ký post type ẩn để làm gì, xin thưa đôi lúc ta cần khai báo một post type để chứa dữ liệu mà không công khai thì đây là code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
function register_post_type(){ $labels_array = array( 'name' => __( 'Appointment schedule '), 'singular_name' => __( 'Appointment schedule '), 'menu_name' => __( 'Appointment schedules'), 'all_items' => __( 'Appointment schedules'), 'add_new' => __( 'New Appointment schedule '), 'add_new_item' => __( 'New Appointment schedule '), 'edit' => __( 'Edit'), 'edit_item' => __( 'Edit Appointment schedule '), 'new_item' => __( 'New Appointment schedule '), 'view' => __( 'View'), 'view_item' => __( 'View Appointment schedule '), 'search_items' => __( 'Search Appointment schedules'), 'not_found' => __( 'No Appointment schedule Found'), 'not_found_in_trash' => __( 'No Appointment schedule found in Trash'), 'parent' => __( 'Parent') ); register_post_type( 'appointmentschedule ', array( 'description' => __( 'Appointment schedule s Post Type'), 'public' => false, 'show_ui' => false, 'show_in_menu' => false, 'capability_type' => 'post', 'hierarchical' => false, 'query_var' => true, 'has_archive' => false, 'can_export' => false, '_builtin' => false, 'labels' => $labels_array, 'supports' => array('title', 'editor', 'author', 'date', 'thumbnail') ) ); } add_action( 'init', 'register_post_type' ); |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress