WordPress函数:get_the_archive_description
一、函数简介
检索作者、帖子类型或术语存档的描述。(Retrieves the description for an author, post type, or term archive.)
二、函数参数
* @return string Archive description.
三、函数案例
<?php get_the_archive_description() ?>
四、源代码
/**
* Retrieves the description for an author, post type, or term archive.
*
* @since 4.1.0
* @since 4.7.0 Added support for author archives.
* @since 4.9.0 Added support for post type archives.
*
* @see term_description()
*
* @return string Archive description.
*/
function get_the_archive_description() {
if ( is_author() ) {
$description = get_the_author_meta( 'description' );
} elseif ( is_post_type_archive() ) {
$description = get_the_post_type_description();
} else {
$description = term_description();
}
/**
* Filters the archive description.
*
* @since 4.1.0
*
* @param string $description Archive description to be displayed.
*/
return apply_filters( 'get_the_archive_description', $description );
}
THE END