Make WordPress Core

Ticket #35573: 35573.patch

File 35573.patch, 785 bytes (added by sebastian.pisula, 9 years ago)
  • wp-includes/general-template.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    14821482         * Filter the archive link content.
    14831483         *
    14841484         * @since 2.6.0
     1485         * @since 4.5.0 Add new params.
    14851486         *
    14861487         * @param string $link_html The archive HTML link content.
     1488         * @param string $url    URL to archive.
     1489         * @param string $text   Archive text description.
    14871490         */
    1488         return apply_filters( 'get_archives_link', $link_html );
     1491        return apply_filters( 'get_archives_link', $link_html, $url, $text );
    14891492}
    14901493
    14911494/**