
如何为WordPress自定义文章类型创建高级搜索表单
the_archive_description ( $before = '', $after = '' )
显示类别、标签、术语或作者描述。
function the_archive_description( $before = '', $after = '' ) { $description = get_the_archive_description(); if ( $description ) { echo $before . $description . $after; } }