Template: After [38486], actually use the $description variable in get_the_archive_description().

Props dlh.
Fixes #37259.

git-svn-id: https://develop.svn.wordpress.org/trunk@38493 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-09-01 11:46:58 +00:00
parent db0fedd69f
commit b024ec7c46

View File

@ -1545,7 +1545,7 @@ function get_the_archive_description() {
*
* @param string $description Archive description to be displayed.
*/
return apply_filters( 'get_the_archive_description', term_description() );
return apply_filters( 'get_the_archive_description', $description );
}
/**