I tried this and got the solution:
<?php
$types = get_post_types( [\'public\' => true ], \'objects\' );
$exclude = array( \'attachment\' , \'elementor_library\' );
foreach ( $types as $type ) {
if( !in_array( $type->name, $exclude )) {
if ( isset( $type->labels->name) ) {
echo $type->labels->name . \'<br>\';
}
}
}
?>
您也可以使用此选项或以上选项。
In this, You will get:
Pages
Posts
Custom Post Types