Docs: Move `term_description()` reference from filter docblock to `get_the_archive_description()` function docblock.

Props dlh.
See #37259.

git-svn-id: https://develop.svn.wordpress.org/trunk@38495 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-09-01 12:31:22 +00:00
parent c43b1d16ae
commit dc5951f460
1 changed files with 2 additions and 2 deletions

View File

@ -1527,6 +1527,8 @@ function the_archive_description( $before = '', $after = '' ) {
* @since 4.1.0 * @since 4.1.0
* @since 4.7.0 Added support for author archives. * @since 4.7.0 Added support for author archives.
* *
* @see term_description()
*
* @return string Archive description. * @return string Archive description.
*/ */
function get_the_archive_description() { function get_the_archive_description() {
@ -1541,8 +1543,6 @@ function get_the_archive_description() {
* *
* @since 4.1.0 * @since 4.1.0
* *
* @see term_description()
*
* @param string $description Archive description to be displayed. * @param string $description Archive description to be displayed.
*/ */
return apply_filters( 'get_the_archive_description', $description ); return apply_filters( 'get_the_archive_description', $description );