Added a new post type like this:
add_action( 'init', 'one' ); function one() { register_post_type( 'one', array( 'public' => true, 'labels' => array( 'name' => 'one', 'all_items' => 'Показать все', 'add_new' => 'Добавить', 'add_new_item' => 'Добавление' ), 'supports' => array( 'title', 'editor', 'thumbnail' ), 'menu_icon' => 'dashicons-shield', 'taxonomies' => array( 'post_tag', 'category ') ) ); }; I added tags to this new category, but I just can’t figure out how to put tags on the list, specifically the tags of this entry, I can’t understand if she has an id or not, help me figure it out.

register_post_typefunction, added the ability to add'taxonomies' => array( 'post_tag'). I do this in order to further sort the records from the category that I added. And now I just need to display a list of these tags, for example throughWP_Query- Alexander