add new Testimonials Custom Post Type

This commit is contained in:
Matthias Kretschmann 2016-03-07 20:24:39 +01:00
parent 809bfde6d9
commit 5b42f1dfed
2 changed files with 44 additions and 0 deletions

View File

@ -29,6 +29,7 @@ require_once WPTHEME_INC . 'cpt-team.php';
require_once WPTHEME_INC . 'cpt-career.php';
require_once WPTHEME_INC . 'cpt-presscoverage.php';
require_once WPTHEME_INC . 'cpt-event.php';
require_once WPTHEME_INC . 'cpt-testimonial.php';
// Run the setup functions
TenUp\ascribe\Core\setup();

View File

@ -0,0 +1,43 @@
<?php
add_action( 'init', 'ascribe_register_cpt_testimonial' );
function ascribe_register_cpt_testimonial() {
$labels = array(
"name" => "Testimonials",
"singular_name" => "Testimonial",
"menu_name" => "Testimonials",
"all_items" => "All Testimonials",
"add_new" => "Add New",
"add_new_item" => "Add New Testimonial",
"edit" => "Edit",
"edit_item" => "Edit Testimonial",
"new_item" => "New Testimonial",
"view" => "View",
"view_item" => "View Testimonial",
"search_items" => "Search Testimonial",
"not_found" => "No Testimonials found",
"not_found_in_trash" => "No Testimonials found in Trash",
"parent" => "Parent Testimonial",
);
$args = array(
"labels" => $labels,
"description" => "",
"public" => true,
"show_ui" => true,
"show_in_rest" => false,
"has_archive" => false,
"show_in_menu" => true,
"exclude_from_search" => true,
"capability_type" => "post",
"map_meta_cap" => true,
"hierarchical" => false,
"rewrite" => false,
"query_var" => true,
);
register_post_type( "testimonial", $args );
}
?>