This code form another topic, auto create category after theme activation
function create_my_cat () {
if (file_exists (ABSPATH.'/wp-admin/includes/taxonomy.php')) {
require_once (ABSPATH.'/wp-admin/includes/taxonomy.php');
if ( ! get_cat_ID( 'Testimonials' ) ) {
wp_create_category( 'Testimonials' );
}
}
}
add_action ( 'after_setup_theme', 'create_my_cat' );
I need code to add term automatic after theme activation, example i want to add term 'rock', 'pop', 'dance' to 'music' taxonomy after_theme_setup