该函数的开头如下:
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();
}
所以你在看
get_the_post_type_description()
.
如果你检查the docs 对于register_post_type()
你会看到的description
是这需要的参数之一。因此,您需要使用插件/编写代码来创建一个在后端添加此文本的位置,然后用自定义字段内容动态填充该参数,或者需要在注册CPT的代码中添加文本。