<?php
$custom_post_types = get_post_types(
array(
'_builtin' => false,
'public' => true
),
'objects'
);
foreach ( $custom_post_types as $custom_post_type ) {
$custom_post_type->permalink = get_post_type_archive_link( $custom_post_type->label );
}
echo '<ul>';
foreach ( $custom_post_types as $custom_post_type ) {
echo '<li>';
echo '<a href="' . $custom_post_type->permalink . '">' . $custom_post_type->label . '</a>';
echo '</li>';
}
echo '</ul>';
?>
I want to exclude products and sales CPT from the list. Can anyone help please? Also I want to display the list in ACS order.
1 comment