The only custom post types I can see registered in this “clean” installation are:
Glossary creates its archive with:
function get_glossary_terms_list( $order, $num, $tax = '' ) {
if ( $order === 'asc' ) {
$order = 'ASC';
}
$args = array( 'post_type' => 'glossary', 'order' => $order, 'orderby' => 'title', 'posts_per_page' => $num, 'update_post_meta_cache' => false, 'fields' => 'ids' );
if ( !empty( $tax ) ) {
$args[ 'tax_query' ] = array(
array(
'taxonomy' => 'glossary-cat',
'terms' => $tax,
'field' => 'slug',
),
);
}
$glossary = new WP_Query( $args );
if ( $glossary->have_posts() ) {
$out = '<dl class="glossary-terms-list">';
while ( $glossary->have_posts() ) : $glossary->the_post();
$out .= '<dt><a href="' . get_glossary_term_url( get_the_ID() ) . '">' . get_the_title() . '</a></dt>';
endwhile;
$out .= '</dl>';
wp_reset_query();
return $out;
}
}
I checked in the database and the tests are set with “wpt_test” custom post types, whereas the glossary terms are set as “glossary” posts.