function add_action_genre_to_ekshen_category_posts() { $args = array( 'post_type' => 'post', 'posts_per_page' => -1, 'tax_query' => array( array( 'taxonomy' => 'category', 'field' => 'slug', 'terms' => 'اکشن', // اسلاگ فارسی دسته ), ), ); $posts = get_posts($args); foreach ($posts as $post) { wp_set_object_terms($post->ID, 'action', 'genres', true); // افزودن ژانر } } add_action('init', 'add_action_genre_to_ekshen_category_posts');