wp_update_term() WP 2.3.0

Оновлює термін (елемент таксономії), використовуючи вказані дані.

Перед оновленням даних терміна ця функція бере вихідні дані з БД та оновлює їх переданими даними. Будь-яке нове поле, вказане в $args, перевизначатиме старе.

Всі поля, вказані в $args , будуть перезаписані в БД. Тому уважно перевірте дані, щоб не змінити щось зайве.

Використовуйте wp_insert_term() , коли потрібно додати новий термін.

Основа для:
wp_insert_category()

Повертає

Массив|WP_Error.

  • ID терміну та ID таксономії (у масиві).
  • об’єкт WP_Error.

Використання

wp_update_term( $term_id, $taxonomy, $args );
$term_id
(число) (обов’язковий)
ID терміну, який потрібно оновити.
$taxonomy
(рядок) (обов’язковий)
Назва таксономії, до якої належить термін. Наприклад:
category ,
post_tag .
$args
(масив)
Масив чи рядок (як аргументів запиту) нових полів терміна.

  • name (рядок) .
    Ім’я нового терміна.
    За замовчуванням: ” – порожній рядок .
  • slug (рядок)
    Ярлик нового терміну.

    Якщо не передали slug, буде створено унікальний slug. Для його створення буде використано аргумент ‘name’ .

    Якщо задали “slug” і він не унікальний, то буде повернена помилка WP_Error.

    За замовчуванням: ” – порожній рядок .

  • description (string) .
    Опис терміна.
    За замовчуванням: ” – порожній рядок .
  • parent (int)
    Ідентифікатор батьківського терміна.
  • alias_of (string)
    Ярлик терміна для розміщення поточного терміна та вказаного в цьому параметрі терміна в одній групі – для обох термінів буде однакове значення у полі ‘term_group’.

    WP намагається отримати термін за вказаним тут slug терміном. Потім отримує номер його term_group та використовує його для поточного терміна. Таким чином, ці два терміни поєднуються в одну групу.

    Якщо поле term_group є порожнім для зазначеного тут терміну. Тоді WP бере MAX номер існуючої групи термінів з БД, збільшує його на 1, і використовує новий номер term_group для обох термінів: поточного терміну, що оновлюється, і терміну зазначеного в цьому параметрі.

Приклади


0

#1 Відновимо термін 1 у таксономії category

Приклад показує, як оновити термін 1 таксономії category (тобто як оновити рубрику з ID=1 ).

$result = wp_update_term( 1, 'category', [
	'name' => 'Non Categorise',
	// 'slug' => 'non-categorise' // це значення creates automatically
								  // specify it only if you need to define some specific slug
]);

// check the result
if( is_wp_error( $result ) ){

	echo $result->get_error_message();
}
else {

	echo 'Term was successfully updated.';
}

нотатки

  • Global. wpdb. $wpdb WordPress database abstraction object.

список змін

З версії 2.3.0Введено.

Код wp_update_term() WP 6.0.2

function wp_update_term( $term_id, $taxonomy, $args = array() ) {
	Global $wpdb;

	if ( ! taxonomy_exists( $taxonomy ) ) {
		return new WP_Error( 'invalid_taxonomy', __( 'Invalid taxonomy.' ) );
	}

	$term_id = (int) $term_id;

	// First, get all of the original args.
	$ term = get_term ($ term_id, $ taxonomy);

	if ( is_wp_error( $term ) ) {
		return $term;
	}

	if ( ! $term ) {
		return new WP_Error( 'invalid_term', __( 'Empty Term.' ) );
	}

	$term = (array) $term->data;

	// Escape data pulled from DB.
	$ Term = wp_slash ($ Term);

	// Merge old and new args with new args overwriting old ones.
	$ args = array_merge ($ term, $ args);

	$defaults = array(
		'alias_of' => '',
		'description' => '',
		'parent' => 0,
		'slug' => '',
	);
	$ args = wp_parse_args ($ args, $ defaults);
	$args = sanitize_term( $args, $taxonomy, 'db');
	$parsed_args = $args;

	// expected_slashed ($name)
	$name = wp_unslash( $args['name'] );
	$description = wp_unslash( $args['description'] );

	$parsed_args['name'] = $name;
	$parsed_args['description'] = $description;

	if ( '' === trim( $name ) ) {
		return new WP_Error( 'empty_term_name', __( 'A name is required for this term.' ) );
	}

	if ( (int) $parsed_args['parent'] > 0 && ! term_exists( (int) $parsed_args['parent'] ) ) {
		return new WP_Error( 'missing_parent', __( 'Parent term does not exist.' ) );
	}

	$empty_slug = false;
	if ( empty( $args['slug'] ) ) {
		$empty_slug = true;
		$ slug = sanitize_title ( $ name );
	} else {
		$slug = $args['slug'];
	}

	$parsed_args['slug'] = $slug;

	$term_group = isset( $parsed_args['term_group'] ) ? $parsed_args['term_group'] : 0;
	if ( $args['alias_of'] ) {
		$alias = get_term_by( 'slug', $args['alias_of'], $taxonomy );
		if ( ! empty( $alias->term_group ) ) {
			// The alias we want is already in a group, so let's use that one.
			$term_group = $alias->term_group;
		} elseif ( ! empty( $alias->term_id ) ) {
			/*
			 * The alias is not in a group, so we create a new one
			 * and add the alias to it.
			 */
			$term_group = $wpdb->get_var( "SELECT MAX(term_group) FROM $wpdb->terms" ) + 1;

			wp_update_term(
				$alias->term_id,
				$taxonomy,
				array(
					'term_group' => $term_group,
				)
			);
		}

		$parsed_args['term_group'] = $term_group;
	}

	/**
	 * Filters the term parent.
	 *
	 * Hook до цього filtrа до висить і це буде викликати hierarchy loop.
	 *
	 * @ Since 3.1.0
	 *
	 * @param int $parent ID of the parent term.
	 * @param int $term_id Term ID.
	 * @param string $taxonomy Taxonomy slug.
	 * @param array $parsed_args На array of potentially altered update arguments for the given term.
	 * @param array $args На array of update arguments for given term.
	 */
	$parent = (int) apply_filters( 'wp_update_term_parent', $args['parent'], $term_id, $taxonomy, $parsed_args, $args );

	// Check for duplicate slug.
	$duplicate = get_term_by( 'slug', $slug, $taxonomy);
	if ( $duplicate && $duplicate->term_id !== $term_id ) {
		// If an empty slug був passed or the parent changed, reset the slug to something unique.
		/ / Otherwise, bail.
		if ( $empty_slug || ( $parent !== (int) $term['parent'] ) ) {
			$slug = wp_unique_term_slug( $slug, (object) $args );
		} else {
			/* translators: %s: Taxonomy term slug. */
			return new WP_Error( 'duplicate_term_slug', sprintf( __( 'The slug “%s” is already in use by another term.' ), $slug ) );
		}
	}

	$tt_id = (int) $wpdb->get_var( $wpdb->prepare( "SELECT tt.term_taxonomy_id FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id .taxonomy = %s AND t.term_id = %d", $taxonomy, $term_id)));

	// Check whether this is a shared term that needs splitting.
	$_term_id = _split_shared_term($term_id, $tt_id);
	if ( ! is_wp_error( $_term_id ) ) {
		$term_id = $_term_id;
	}

	/**
	 * Fires immediately before given terms are edited.
	 *
	 * @ Since 2.9.0
	 *
	 * @param int $term_id Term ID.
	 * @param string $taxonomy Taxonomy slug.
	 */
	do_action( 'edit_terms', $term_id, $taxonomy);

	$data = compact( 'name', 'slug', 'term_group' );

	/**
	 * Filters term data before it is updated in the database.
	 *
	 * @ Since 4.7.0
	 *
	 * @param array $data Term data to be updated.
	 * @param int $term_id Term ID.
	 * @param string $taxonomy Taxonomy slug.
	 * @param array $args Arguments passed to wp_update_term().
	 */
	$data = apply_filters( 'wp_update_term_data', $data, $term_id, $taxonomy, $args);

	$wpdb->update( $wpdb->terms, $data, compact( 'term_id' ) );

	if ( empty( $slug ) ) {
		$ slug = sanitize_title ($ name, $ term_id);
		$wpdb->update( $wpdb->terms, compact( 'slug' ), compact( 'term_id' ) );
	}

	/**
	 * Fires immediately after a term is updated in the database, but before its
	 * Терм-таксономія відносини є updated.
	 *
	 * @ Since 2.9.0
	 *
	 * @param int $term_id Term ID.
	 * @param string $taxonomy Taxonomy slug.
	 */
	do_action( 'edited_terms', $term_id, $taxonomy);

	/**
	 * Fires inmediate before a term-taxonomy relationship is updated.
	 *
	 * @ Since 2.9.0
	 *
	 * @param int $tt_id Term taxonomy ID.
	 * @param string $taxonomy Taxonomy slug.
	 */
	do_action( 'edit_term_taxonomy', $tt_id, $taxonomy );

	$wpdb->update( $wpdb->term_taxonomy, compact( 'term_id', 'taxonomy', 'description', 'parent' ), array( 'term_taxonomy_id' => $tt_id ) );

	/**
	 * Fires immediately after a term-taxonomy relationship is updated.
	 *
	 * @ Since 2.9.0
	 *
	 * @param int $tt_id Term taxonomy ID.
	 * @param string $taxonomy Taxonomy slug.
	 */
	do_action( 'edited_term_taxonomy', $tt_id, $taxonomy );

	/**
	 * Fires after a term has been updated, but before the term cache has been cleaned.
	 *
	 * The {@see 'edit_$taxonomy'} hook is also available for targeting a specific
	 * taxonomy.
	 *
	 * @ Since 2.3.0
	 *
	 * @param int $term_id Term ID.
	 * @param int $tt_id Term taxonomy ID.
	 * @param string $taxonomy Taxonomy slug.
	 */
	do_action( 'edit_term', $term_id, $tt_id, $taxonomy);

	/**
	 * Fires after a term in a specific taxonomy has been updated, but before the term
	 * cache has been cleaned.
	 *
	 * The dynamickа порція 'hook name', `$taxonomy`, refers to the taxonomy slug.
	 *
	 * Possible hook names include:
	 *
	 * - `edit_category`
	 * - `edit_post_tag`
	 *
	 * @ Since 2.3.0
	 *
	 * @param int $term_id Term ID.
	 * @param int $tt_id Term taxonomy ID.
	 */
	do_action( "edit_{$taxonomy}", $term_id, $tt_id);

	/** Цей filter is documented в wp-includes/taxonomy.php */
	$term_id = apply_filters( 'term_id_filter', $term_id, $tt_id);

	clean_term_cache($term_id, $taxonomy);

	/**
	 * Fires after a term has been updated, and the term cache has been cleaned.
	 *
	 * The {@see 'edited_$taxonomy'} hook is also available for targeting a specific
	 * taxonomy.
	 *
	 * @ Since 2.3.0
	 *
	 * @param int $term_id Term ID.
	 * @param int $tt_id Term taxonomy ID.
	 * @param string $taxonomy Taxonomy slug.
	 */
	do_action( 'edited_term', $term_id, $tt_id, $taxonomy);

	/**
	 * Fires after a term for a specific taxonomy has been updated, and the term
	 * cache has been cleaned.
	 *
	 * The dynamickа порція 'hook name', `$taxonomy`, refers to the taxonomy slug.
	 *
	 * Possible hook names include:
	 *
	 * - `edited_category`
	 * - `edited_post_tag`
	 *
	 * @ Since 2.3.0
	 *
	 * @param int $term_id Term ID.
	 * @param int $tt_id Term taxonomy ID.
	 */
	do_action( "edited_{$taxonomy}", $term_id, $tt_id);

	/** Ця дія міститься в wp-includes/taxonomy.php */
	do_action( 'saved_term', $term_id, $tt_id, $taxonomy, true);

	/** Ця дія міститься в wp-includes/taxonomy.php */
	do_action( "saved_{$taxonomy}", $term_id, $tt_id, true);

	return array(
		'term_id' => $term_id,
		'term_taxonomy_id' => $tt_id,
	);
}

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *