Tengo creado un Custom Post Type en mi tema y todo funciona correctamente a excepcion de un pequeño detalle, el url no me redirecciona correctamente, les coloco el codigo para explicarme mejor:
Código PHP:
Ver original
/** * Custom post type "Testimonials" */ add_action( 'init', 'create_post_type' ); function create_post_type() { register_post_type( 'testimonial', 'name' => __( 'Testimonials' ), 'singular_name' => __( 'Testimonial' ), 'add_new_item' => __('Add New Testimonial') ), 'public' => true, 'description' => __('Custom post type to add testimonials information'), 'menu_icon' => get_bloginfo('template_url') . '/images/testimonials.png', 'rewrite' => false ) ); }
La opcion rewrite la tengo en false y de esa manera me funciona perfectamente todo, pero si la coloco true o especifico el slug (array("slug" => "testimonial")), me cambia el permalink correctamente pero cuando abro el post me muestra la pagina de 404, si lo dejo en false si abre correctamente pero con el url "feo".
Alguien sabe cual puede ser el error?
Gracias de antemano.