Ticket #37259: 37259.2.diff
File 37259.2.diff, 758 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/general-template.php
1527 1527 * @since 4.1.0 1528 1528 * @since 4.7.0 Added support for author archives. 1529 1529 * 1530 * @see term_description() 1531 * 1530 1532 * @return string Archive description. 1531 1533 */ 1532 1534 function get_the_archive_description() { … … 1541 1543 * 1542 1544 * @since 4.1.0 1543 1545 * 1544 * @see term_description()1545 *1546 1546 * @param string $description Archive description to be displayed. 1547 1547 */ 1548 return apply_filters( 'get_the_archive_description', term_description());1548 return apply_filters( 'get_the_archive_description', $description ); 1549 1549 } 1550 1550 1551 1551 /**