It looks like nothing was found at this location. Maybe try one of the links below or a search?
// Register Testimonials Post Type function register_testimonial_post_type() { register_post_type('testimonial', array( 'labels' => array( 'name' => 'Testimonials', 'singular_name' => 'Testimonial', 'add_new' => 'Add New', 'add_new_item' => 'Add New Testimonial', 'edit_item' => 'Edit Testimonial', ), 'public' => true, 'has_archive' => false, 'supports' => array('title', 'editor', 'thumbnail'), 'menu_icon' => 'dashicons-format-quote', 'show_in_rest' => true, ) ); } add_action('init', 'register_testimonial_post_type');
It looks like nothing was found at this location. Maybe try one of the links below or a search?