_wp_check_split_default_terms()WP 4.2.0

Checks default categories when a term gets split to see if any of them need to be updated.

Внутренняя функция — эта функция рассчитана на использование самим ядром. Не рекомендуется использовать эту функцию в своем коде.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

_wp_check_split_default_terms( $term_id, $new_term_id, $term_taxonomy_id, $taxonomy );
$term_id(int) (обязательный)
ID of the formerly shared term.
$new_term_id(int) (обязательный)
ID of the new term created for the $term_taxonomy_id.
$term_taxonomy_id(int) (обязательный)
ID for the term_taxonomy row affected by the split.
$taxonomy(строка) (обязательный)
Taxonomy for the split term.

Список изменений

С версии 4.2.0 Введена.

Код _wp_check_split_default_terms() WP 6.5.2

function _wp_check_split_default_terms( $term_id, $new_term_id, $term_taxonomy_id, $taxonomy ) {
	if ( 'category' !== $taxonomy ) {
		return;
	}

	foreach ( array( 'default_category', 'default_link_category', 'default_email_category' ) as $option ) {
		if ( (int) get_option( $option, -1 ) === $term_id ) {
			update_option( $option, $new_term_id );
		}
	}
}