Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Saidz.INFO
- function my_custom_post_produk() {
- $labels = array(
- 'name' => _x( 'produk', 'post type general name' ),
- 'singular_name' => _x( 'produk', 'post type singular name' ),
- 'add_new' => _x( 'Tambahkan', 'book' ),
- 'add_new_item' => __( 'Tambah produk' ),
- 'edit_item' => __( 'Edit produk' ),
- 'new_item' => __( 'New produk' ),
- 'all_items' => __( 'Semua produk' ),
- 'view_item' => __( 'Lihat produk' ),
- 'search_items' => __( 'Search produks' ),
- 'not_found' => __( 'Tidak di temukan produk' ),
- 'not_found_in_trash' => __( 'Tidak ditemukan produk dalam trash' ),
- 'parent_item_colon' => '',
- 'menu_name' => 'produk'
- );
- $args = array(
- 'labels' => $labels,
- 'description' => 'Holds our produks and produk specific data',
- 'public' => true,
- 'menu_position' => 5,
- 'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt', 'comments' ),
- 'has_archive' => true,
- );
- register_post_type( 'produk', $args );
- }
- add_action( 'init', 'my_custom_post_produk' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement