﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
13015,Custom post types with rewrite doesn't have loop page,grezvany13,,"''note: not sure if bug, feature request or enhancement... or current feature''

When using custom post types with rewrite, the slug itself can't be accessed.

'''Example:'''
{{{
register_post_type('micro', array(
	'label' => __('Micros'),
	'capability_type' => 'post',
	'hierarchical' => true
));
}}}

'''Results:''' (with permalinks: '/%postname%/')[[BR]]
www.example.com/about/ ''(works; since normal page)''[[BR]]
www.example.com/micro/post-name/ ''(works; since complete permalink)''[[BR]]
www.example.com/micro/ ''(404; not a page, not a menu item, not a permalink)''[[BR]]

The problem is also notable at the menu manager, since it's only possible to add direct links to the posts like links to normal pages.
While a link to the slug only would/could be desirable (like blog listing).",enhancement,closed,normal,,Post Types,3.0,trivial,duplicate,,
