Skip to content

Instantly share code, notes, and snippets.

@jordesign
jordesign / basic_testimonials_custom_post_type.php
Created July 23, 2012 08:13 — forked from BronsonQuick/basic_testimonials_custom_post_type.php
A basic Testimonials Custom Post Type for WordPress
<?php add_action( 'init', 'sennza_register_cpt_testimonial' );
function sennza_register_cpt_testimonial() {
$args = array(
'public' => true,
'query_var' => 'testimonial',
'rewrite' => array(
'slug' => 'testimonials',
'with_front' => false
),