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

Props dlh.
Fixes #37259.
Built from https://develop.svn.wordpress.org/trunk@38493


git-svn-id: http://core.svn.wordpress.org/trunk@38434 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2016-09-01 11:47:30 +00:00
parent 94e8a9cfa0
commit 7aa79d3705
2 changed files with 2 additions and 2 deletions

View File

@ -1545,7 +1545,7 @@ function get_the_archive_description() {
* *
* @param string $description Archive description to be displayed. * @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 );
} }
/** /**

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.7-alpha-38492'; $wp_version = '4.7-alpha-38493';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.