mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
The previously available set of filters in the `feed_links()` function to enable or disable display of various feed links was quite limited: * `feed_links_show_posts_feed` to control the main feed * `feed_links_show_comments_feed` to control both the global comments feed and the comment feed for singular posts. In order to disable the other feeds (post type archive, category, tag, custom taxonomy, author archive, search results), one would have to unhook `feed_links_extra()` from `wp_head`, but that would completely remove all of those feeds, as well as the single post comments feed. To allow for more flexibility, this commit introduces a full set of filters in the `feed_links_extra()` function to control each one of the feeds independently, including a way to enable/disable the single post comments feed when the global comments feed is disabled/enabled: * `feed_links_extra_show_post_comments_feed` * `feed_links_extra_show_post_type_archive_feed` * `feed_links_extra_show_category_feed` * `feed_links_extra_show_tag_feed` * `feed_links_extra_show_tax_feed` * `feed_links_extra_show_author_feed` * `feed_links_extra_show_search_feed` All of them default to `true`, except for `feed_links_extra_show_post_comments_feed` which defaults to the result of `feed_links_show_comments_feed` to ensure backward compatibility. Follow-up to [33838], [33839], [53125]. Props lopo, mukesh27, audrasjb, SergeyBiryukov. Fixes #55904. git-svn-id: https://develop.svn.wordpress.org/trunk@54161 602fd350-edb4-49c9-b593-d223f7449a82 |
||
|---|---|---|
| .. | ||
| feedLinksExtra.php | ||
| paginateLinks.php | ||
| template_CheckedSelectedHelper.php | ||
| template.php | ||
| wpError.php | ||
| wpGetArchives.php | ||
| wpGetDocumentTitle.php | ||
| wpPreloadResources.php | ||
| wpRequiredFieldIndicator.php | ||
| wpRequiredFieldMessage.php | ||
| wpResourceHints.php | ||
| wpTitle.php | ||