General: Ensure $description gets initialized in get_the_archive_description() if the post type archive conditional is true and the description isn't set.
Props henrywright. See #38487. Built from https://develop.svn.wordpress.org/trunk@40983 git-svn-id: http://core.svn.wordpress.org/trunk@40833 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -1565,6 +1565,8 @@ function get_the_archive_description() {
|
||||
// Check if a description is set.
|
||||
if ( isset( $post_type_obj->description ) ) {
|
||||
$description = $post_type_obj->description;
|
||||
} else {
|
||||
$description = '';
|
||||
}
|
||||
} else {
|
||||
$description = term_description();
|
||||
|
||||
Reference in New Issue
Block a user