__('Testimonial', 'gdl_back_office'), 'singular_name' => __('Testimonial Item', 'gdl_back_office'), 'add_new' => __('Add New', 'gdl_back_office'), 'add_new_item' => __('Author Name', 'gdl_back_office'), 'edit_item' => __('Author Name', 'gdl_back_office'), 'new_item' => __('New Testimonial', 'gdl_back_office'), 'view_item' => '', 'search_items' => __('Search Testimonial', 'gdl_back_office'), 'not_found' => __('Nothing found', 'gdl_back_office'), 'not_found_in_trash' => __('Nothing found in Trash', 'gdl_back_office'), 'parent_item_colon' => '' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'query_var' => true, //'menu_icon' => GOODLAYERS_PATH . '/include/images/portfolio-icon.png', 'rewrite' => true, 'capability_type' => 'post', 'hierarchical' => false, 'menu_position' => 5, "show_in_nav_menus" => false, 'exclude_from_search' => true, 'supports' => array('title','editor','author','thumbnail','excerpt','comments') ); register_post_type( 'testimonial' , $args); register_taxonomy( "testimonial-category", array("testimonial"), array( "hierarchical" => true, "label" => "Testimonial Categories", "singular_label" => "Testimonial Categories", "show_in_nav_menus" => false, "rewrite" => true)); register_taxonomy_for_object_type('testimonial-category', 'testimonial'); } // add table column in edit page add_filter("manage_edit-testimonial_columns", "show_testimonial_column"); function show_testimonial_column($columns){ $columns = array( "cb" => "", "title" => "Title", "author" => "Author", "testimonial-category" => "Testimonial Categories", "date" => "date"); return $columns; } add_action("manage_posts_custom_column","testimonial_custom_columns"); function testimonial_custom_columns($column){ global $post; switch ($column) { case "testimonial-category": echo get_the_term_list($post->ID, 'testimonial-category', '', ', ',''); break; } } $testimonial_meta_boxes = array( "Author Position" => array( 'title'=> __('AUTHOR POSITION', 'gdl_back_office'), 'name'=>'testimonial-option-author-position', 'type'=>'inputtext') ); add_action('add_meta_boxes', 'add_testimonial_option'); function add_testimonial_option(){ add_meta_box('testimonial-option', __('Testimonial Option','gdl_back_office'), 'add_testimonial_option_element', 'testimonial', 'normal', 'high'); } function add_testimonial_option_element(){ global $post, $testimonial_meta_boxes; echo '
'; ?>
ID, $meta_box['name'], true); print_meta($meta_box); } ?>
'; } function save_testimonial_option_meta($post_id){ global $testimonial_meta_boxes; $edit_meta_boxes = $testimonial_meta_boxes; // save foreach ($edit_meta_boxes as $edit_meta_box){ if(isset($_POST[$edit_meta_box['name']])){ $new_data = stripslashes($_POST[$edit_meta_box['name']]); }else{ $new_data = ''; } $old_data = get_post_meta($post_id, $edit_meta_box['name'],true); save_meta_data($post_id, $new_data, $old_data, $edit_meta_box['name']); } } ?>