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
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_categoryuses thewp_insert_categoryfunction 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 thetermstable andterm_taxonomy. - Ponio 2:44 pm
|