It is necessary to add a label in wp without using the admin panel. I tried to add an entry to the wp_terms table, but this label is not visible in the admin panel, apparently, it is necessary to register / link it somewhere else ...

    1 answer 1

    Use the wp_insert_category function with the post_tag taxonomy:

     wp_insert_category( array( 'cat_name' => 'Имя метки', 'taxonomy' => 'post_tag' ) ); 
    • ATP for a hint, but this method does not suit me (do not tell me, can I manage to add a label using records in the database? - Alexey
    • wp_insert_category uses the wp_insert_category function to add an entry to the database, see it, here is the description and source code: wp-kama.ru/function/wp_insert_term Now I can’t verify it, but I need to update the terms table and term_taxonomy . - Ponio 2:44 pm