JSFiddle - React, Tailwind, and code Playground

by andyjh07

HTML

$post_types = get_post_types( array( 'public' => true, '_builtin' => false ), 'names' );
foreach ( $post_types as $post_type ) {
  $post_type_object = get_post_type_object( $post_type );
  echo $post_type_object->rewrite['slug'];
}