get_the_post_type_description() WP 4.9.0

Отримує опис поточної архівної сторінки типу запису.

Опис вказується під час реєстрації типу запису у параметрі description , див. функцію register_post_type() .

Функцію потрібно використовувати на архівній сторінці типу запису, див. is_post_type_archive() .

Працює на основі:
get_post_type_object()
1 раз – 0.000249 сек
(швидко) | 50000 разів – 0.30 сек
(дуже швидко) |
PHP 7.1.5, WP 4.9

Хуки з функції

Повертає

Строку. Опис архівної сторінки типу запису.

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

get_the_post_type_description();

Приклади

0

#1 Виведемо на екран опис архіву типу записів

echo get_the_post_type_description();

список змін

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

Код get_the_post_type_description() WP 6.0.2

function get_the_post_type_description() {
	$post_type = get_query_var( 'post_type');

	if ( is_array( $post_type ) ) {
		$post_type = reset($post_type);
	}

	$post_type_obj = get_post_type_object($post_type);

	// Check if a description is set.
	if ( isset( $post_type_obj->description ) ) {
		$description = $post_type_obj->description;
	} else {
		$description = '';
	}

	/**
	 * Filters допис для post type archive.
	 *
	 * @ Since 4.9.0
	 *
	 * @param string $description Postscript type description.
	 * @param WP_Post_Type $post_type_obj The post type object.
	 */
	return apply_filters( 'get_the_post_type_description', $description, $post_type_obj );
}

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

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