the_archive_description

函数
the_archive_description ( $before = '', $after = '' )
参数
  • (string) $before Optional. Content to prepend to the description. Default empty.
    Required:
    Default: (empty)
  • (string) $after Optional. Content to append to the description. Default empty.
    Required:
    Default: (empty)
相关
  • get_the_archive_description()
定义位置
相关方法
get_the_archive_descriptionthe_author_descriptionterm_descriptionget_file_descriptiontag_description
引入
4.1.0
弃用
-

the_archive_description: 这个函数显示当前档案的描述。

显示类别、标签、术语或作者描述。

function the_archive_description( $before = '', $after = '' ) {
	$description = get_the_archive_description();
	if ( $description ) {
		echo $before . $description . $after;
	}
}

常见问题

FAQs
查看更多 >