Make WordPress Core

Changes between Initial Version and Version 10 of Ticket #55904


Ignore:
Timestamp:
09/14/2022 07:38:14 PM (3 years ago)
Author:
SergeyBiryukov
Comment:

Updated ticket description to match the filter names in the commit, as they were changed to match the function name.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #55904

    • Property Status changed from assigned to closed
    • Property Owner set to audrasjb
    • Property Version changed from trunk to
    • Property Milestone changed from Awaiting Review to 6.1
    • Property Keywords has-patch has-unit-tests needs-testing added
    • Property Resolution changed from to fixed
  • Ticket #55904 – Description

    initial v10  
    77
    88We should introduce a full set of filters to control each one of the feeds independently, included a way to enable/disable the single post comments feed when the global comments feed is disabled/enabled:
    9 * `feed_links_show_post_comments_feed`
    10 * `feed_links_show_post_type_archive_feed`
    11 * `feed_links_show_category_feed`
    12 * `feed_links_show_tag_feed`
    13 * `feed_links_show_tax_feed`
    14 * `feed_links_show_author_feed`
    15 * `feed_links_show_search_feed`
     9* `feed_links_extra_show_post_comments_feed`
     10* `feed_links_extra_show_post_type_archive_feed`
     11* `feed_links_extra_show_category_feed`
     12* `feed_links_extra_show_tag_feed`
     13* `feed_links_extra_show_tax_feed`
     14* `feed_links_extra_show_author_feed`
     15* `feed_links_extra_show_search_feed`
    1616
    17 All of them should get `true` as default input, except for `feed_links_show_post_comments_feed` which should get the output of `feed_links_show_comments_feed` to ensure backwards compatibility.
     17All of them should get `true` as default input, except for `feed_links_extra_show_post_comments_feed` which should get the output of `feed_links_show_comments_feed` to ensure backwards compatibility.