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:
parent
94e8a9cfa0
commit
7aa79d3705
|
@ -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 );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @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.
|
||||
|
|
Loading…
Reference in New Issue