WP 3.1 – archive pages for custom content types possible now without a plugin?
Yes, you’ll just need to set the has_archive parameter to true or your chosen slug when registering your custom post type. So firstly add the has_archive parameter to your post type, here’s an example… add_action( ‘init’, ‘question_10706_init’ ); function question_10706_init() { register_post_type( ‘example’, array( ‘labels’ => array( ‘name’ => __(‘Examples’), ‘singular_name’ => __(‘Example’) ), ‘public’ … Read more